File tree 1 file changed +15
-16
lines changed
1 file changed +15
-16
lines changed Original file line number Diff line number Diff line change 17
17
18
18
jobs :
19
19
build :
20
+ runs-on : ${{ matrix.os }}
20
21
strategy :
21
22
fail-fast : false
22
23
matrix :
23
- # branch: [version-1-2, version-1-4, devel]
24
- branch : [version-1-6, devel]
25
- target : [linux, macos, windows]
26
- include :
27
- - target : linux
28
- builder : ubuntu-latest
29
- - target : macos
30
- builder : macos-latest
31
- - target : windows
32
- builder : windows-latest
33
- name : ' ${{ matrix.target }} (${{ matrix.branch }})'
34
- runs-on : ${{ matrix.builder }}
24
+ nim :
25
+ - ' 1.6.x'
26
+ - ' 2.0.x'
27
+ - ' devel'
28
+ os :
29
+ - ubuntu-latest
30
+ - windows-latest
31
+ - macOS-latest
32
+ name : ' ${{ matrix.nim }} (${{ matrix.os }})'
35
33
steps :
36
34
- name : Checkout
37
35
uses : actions/checkout@v2
38
36
with :
39
37
path : unchained
40
38
41
- - name : Setup Nim
42
-
39
+
40
+ - name : Setup nim
41
+ uses : jiro4989/setup-nim-action@v1
43
42
with :
44
- path : nim
45
- version : ${{ matrix.branch }}
43
+ nim-version : ${{ matrix. nim }}
44
+ repo-token : ${{ secrets.GITHUB_TOKEN }}
46
45
47
46
- name : Setup MSYS2 (Windows)
48
47
if : ${{matrix.target == 'windows'}}
You can’t perform that action at this time.
0 commit comments