Skip to content

Commit be9f4ee

Browse files
committed
checkout
1 parent 740fe13 commit be9f4ee

File tree

1 file changed

+17
-4
lines changed

1 file changed

+17
-4
lines changed

.github/workflows/test.yml

+17-4
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,11 @@ jobs:
1616
name: Build
1717
runs-on: ubuntu-latest
1818
steps:
19-
- shell: bash
19+
20+
- name: Build
21+
uses: actions/checkout@v3
2022
run: ./build-in-docker.sh
23+
2124
- name: Upload binary
2225
uses: actions/upload-artifact@v3
2326
with:
@@ -28,9 +31,8 @@ jobs:
2831
needs: [ build ]
2932
runs-on: ubuntu-latest
3033
steps:
31-
- uses: actions/checkout@v3
32-
3334
- name: Unit tests
35+
uses: actions/checkout@v3
3436
run: cargo test --all
3537

3638
integration-tests:
@@ -43,13 +45,24 @@ jobs:
4345
with:
4446
name: sweat-jar
4547
path: res/sweat_jar.wasm
46-
- shell: bash
48+
49+
- name: Integration tests
50+
uses: actions/checkout@v3
4751
run: cargo run -p integration-tests
4852

4953
push:
5054
needs: [ unit-tests, integration-tests ]
5155
runs-on: ubuntu-latest
5256
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+
5366
- name: Commit & Push changes
5467
uses: actions-js/push@master
5568
with:

0 commit comments

Comments
 (0)