File tree 2 files changed +15
-13
lines changed
2 files changed +15
-13
lines changed Original file line number Diff line number Diff line change 23
23
24
24
- name : Build in docker
25
25
run : ./build-in-docker.sh
26
-
27
- - uses : stefanzweifel/git-auto-commit-action@v4
28
- with :
29
- commit_message : Update binary
Original file line number Diff line number Diff line change 12
12
13
13
jobs :
14
14
15
- test :
16
- strategy :
17
- fail-fast : true
18
- matrix :
19
- target : [
20
- { runner: ubuntu-latest, os: linux },
21
- ]
22
- runs-on : ${{ matrix.target.runner }}
15
+ build :
16
+ runs-on : ubuntu-latest
23
17
steps :
24
18
- uses : actions/checkout@v3
25
19
26
20
- name : Build
27
21
run : cargo build --all
28
22
23
+ unit-tests :
24
+ needs : [ build ]
25
+ runs-on : ubuntu-latest
26
+ steps :
27
+ - uses : actions/checkout@v3
28
+
29
29
- name : Unit tests
30
30
run : cargo test --all
31
31
32
+ integration-tests :
33
+ needs : [ build ]
34
+ runs-on : ubuntu-latest
35
+ steps :
36
+ - uses : actions/checkout@v3
37
+
32
38
- name : Integration tests
33
- run : cargo run -p integration-tests
39
+ run : cargo run -p integration-tests
You can’t perform that action at this time.
0 commit comments