Skip to content

Commit 7354f2b

Browse files
authored
test c2nim with 2.0.0 (#272)
* test c2nim with 2.0.0 * Update .github/workflows/ci.yml * Apply suggestions from code review
1 parent 621aae6 commit 7354f2b

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,21 @@ jobs:
2020
# The type of runner that the job will run on
2121
runs-on: ubuntu-latest
2222

23+
strategy:
24+
matrix:
25+
nim: ['devel', 'version-2-0', 'version-1-6']
26+
2327
# Steps represent a sequence of tasks that will be executed as part of the job
2428
steps:
2529
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
26-
- uses: actions/checkout@v3
30+
- uses: actions/checkout@v4
2731

2832
- name: Setup Nim
2933
uses: alaviss/[email protected]
3034
with:
31-
path: nim
32-
version: version-1-6
33-
35+
path: 'nim'
36+
version: ${{ matrix.nim }}
37+
3438
- name: c2nim
3539
shell: bash
3640
run: |

0 commit comments

Comments
 (0)