File tree 1 file changed +17
-4
lines changed
1 file changed +17
-4
lines changed Original file line number Diff line number Diff line change 16
16
name : Build
17
17
runs-on : ubuntu-latest
18
18
steps :
19
- - shell : bash
19
+
20
+ - name : Build
21
+ uses : actions/checkout@v3
20
22
run : ./build-in-docker.sh
23
+
21
24
- name : Upload binary
22
25
uses : actions/upload-artifact@v3
23
26
with :
28
31
needs : [ build ]
29
32
runs-on : ubuntu-latest
30
33
steps :
31
- - uses : actions/checkout@v3
32
-
33
34
- name : Unit tests
35
+ uses : actions/checkout@v3
34
36
run : cargo test --all
35
37
36
38
integration-tests :
@@ -43,13 +45,24 @@ jobs:
43
45
with :
44
46
name : sweat-jar
45
47
path : res/sweat_jar.wasm
46
- - shell : bash
48
+
49
+ - name : Integration tests
50
+ uses : actions/checkout@v3
47
51
run : cargo run -p integration-tests
48
52
49
53
push :
50
54
needs : [ unit-tests, integration-tests ]
51
55
runs-on : ubuntu-latest
52
56
steps :
57
+ - name : Checkout
58
+ uses : actions/checkout@v3
59
+
60
+ - name : Download binary
61
+ uses : actions/download-artifact@v3
62
+ with :
63
+ name : sweat-jar
64
+ path : res/sweat_jar.wasm
65
+
53
66
- name : Commit & Push changes
54
67
uses : actions-js/push@master
55
68
with :
You can’t perform that action at this time.
0 commit comments