We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcadd94 commit a9073f2Copy full SHA for a9073f2
.github/workflows/main.yml
@@ -10,26 +10,17 @@ on:
10
11
jobs:
12
build:
13
- runs-on: ${{ matrix.os }}
+ runs-on: ubuntu-latest
14
strategy:
15
matrix:
16
- os:
17
- - ubuntu-latest
18
- version:
19
- - 1.6.14
20
- - stable
21
-
+ nim:
+ - '1.6.14'
+ - 'stable'
+ name: Nim ${{ matrix.nim }} sample
22
steps:
23
- - uses: actions/checkout@v1
24
- - uses: jiro4989/setup-nim-action@master
25
- with:
26
- nim-version: ${{ matrix.version }}
27
28
- - name: Print Nim version
29
- run: nim -v
30
31
- - name: Print Nimble version
32
- run: nimble -v
33
34
- - name: Build binaries
35
- run: nimble test
+ - uses: actions/checkout@v3
+ - name: Setup nim
+ uses: jiro4989/setup-nim-action@v1
+ with:
+ nim-version: ${{ matrix.nim }}
+ - run: nimble test -Y
0 commit comments