File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -20,10 +20,13 @@ jobs:
2020 timeout-minutes : 10
2121 strategy :
2222 matrix :
23- os : [ ubuntu-latest, macos-latest ]
2423 include :
2524 - os : windows-latest
26- windows : true
25+ script : " .\\ tests\\ sign-and-verify-win.bat"
26+ - os : ubuntu-latest
27+ script : ./tests/sign-and-verify.sh
28+ - os : macos-latest
29+ script : ./tests/sign-and-verify.sh
2730 runs-on : ${{ matrix.os }}
2831 steps :
2932 - uses : actions/checkout@v4
3437 - name : Check if the example compiles
3538 run : cargo check --example key-storage
3639 - name : Run integration tests
37- run : ./tests/sign-and-verify.sh
38- if : ${{ ! matrix.windows }}
39- - name : Run integration tests
40- run : " .\\ tests\\ sign-and-verify-win.bat"
41- if : ${{ matrix.windows }}
40+ run : ${{ matrix.script }}
You can’t perform that action at this time.
0 commit comments