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:
20
20
timeout-minutes : 10
21
21
strategy :
22
22
matrix :
23
- os : [ ubuntu-latest, macos-latest ]
24
23
include :
25
24
- 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
27
30
runs-on : ${{ matrix.os }}
28
31
steps :
29
32
- uses : actions/checkout@v4
34
37
- name : Check if the example compiles
35
38
run : cargo check --example key-storage
36
39
- 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