File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -24,13 +24,19 @@ jobs:
24
24
strategy :
25
25
fail-fast : false
26
26
matrix :
27
- os : [ubuntu-latest, macos-latest]
28
- runs-on : ${{matrix.os}}
27
+ include :
28
+ - { os: ubuntu-latest, shell: bash }
29
+ - { os: macos-latest, shell: bash }
30
+ - { os: windows-latest, shell: 'wsl-bash {0}' }
31
+ runs-on : ${{ matrix.os }}
32
+ defaults :
33
+ run :
34
+ shell : ${{ matrix.shell }}
29
35
steps :
30
36
- uses : actions/checkout@v2
31
- - uses : savi-lang/action-install@v1.0 .0
37
+ - uses : savi-lang/action-install@v1.1 .0
32
38
- run : savi deps update --for spec
33
- - run : savi run spec
39
+ - run : savi run spec ${{ runner.os == 'Windows' && '--cross-compile=x86_64-unknown-windows-msvc' || '' }}
34
40
35
41
# Check formatting of all files in the repository.
36
42
format :
You can’t perform that action at this time.
0 commit comments