File tree 2 files changed +37
-13
lines changed
2 files changed +37
-13
lines changed Original file line number Diff line number Diff line change 1
1
name : Build
2
2
3
3
on :
4
- push :
5
- branches : [ ci ]
6
- pull_request :
7
- branches : [ ci ]
4
+ workflow_dispatch :
5
+ # push:
6
+ # branches: [ ci ]
7
+ # pull_request:
8
+ # branches: [ ci ]
8
9
9
10
env :
10
11
CARGO_TERM_COLOR : always
23
24
steps :
24
25
- uses : actions/checkout@v3
25
26
26
- - name : Unit tests
27
- run : cargo test --all
28
-
29
- - name : Integration tests
30
- run : cargo run -p integration-tests
31
-
32
- - name : Build simple
33
- run : ./build.sh
34
-
35
27
- name : Build in docker
36
28
run : ./build-in-docker.sh
Original file line number Diff line number Diff line change
1
+ name : Build
2
+
3
+ on :
4
+ push :
5
+ branches : [ ci ]
6
+ pull_request :
7
+ branches : [ ci ]
8
+
9
+ env :
10
+ CARGO_TERM_COLOR : always
11
+ GITHUB_ACTIONS : true
12
+
13
+ jobs :
14
+
15
+ build :
16
+ strategy :
17
+ fail-fast : true
18
+ matrix :
19
+ target : [
20
+ { runner: ubuntu-latest, os: linux },
21
+ ]
22
+ runs-on : ${{ matrix.target.runner }}
23
+ steps :
24
+ - uses : actions/checkout@v3
25
+
26
+ - name : Run tests
27
+ run : |
28
+ echo Unit tests:
29
+ cargo test --all
30
+
31
+ echo Integration tests:
32
+ cargo run -p integration-tests
You can’t perform that action at this time.
0 commit comments