You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
Setup Nim environment
v1.0.1
This action sets up a Nim environment.
See action.yml
Basic:
steps:
- uses: actions/checkout@master
- uses: jiro4989/[email protected]
with:
nim-version: '1.0.2'
- run: nimble build
Matrix Testing:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
nim: [ '1.0.2', 'stable' ]
name: Nim ${{ matrix.nim }} sample
steps:
- uses: actions/checkout@master
- name: Setup nim
uses: jiro4989/[email protected]
with:
nim-version: ${{ matrix.nim }}
- run: nimble build
MIT