add nim version
This commit is contained in:
parent
733bc579ff
commit
054424f78c
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
|
@ -6,12 +6,18 @@ jobs:
|
|||
fail-fast: false
|
||||
matrix:
|
||||
os: [ubuntu-latest, windows-latest]
|
||||
nim-version: ['1.4.x', 'stable']
|
||||
include:
|
||||
- nim-version: '1.4.x'
|
||||
- nim-version: 'stable'
|
||||
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: jiro4989/setup-nim-action@v1
|
||||
with:
|
||||
nim-version: ${{ matrix.nim-version }}
|
||||
- run: nimble test -d:release -y
|
||||
- run: nimble test -d:release -d:pixieNoSimd -y
|
||||
- run: nimble test --gc:orc -d:release -y
|
||||
|
|
Loading…
Reference in a new issue