Skip to content

Commit eb438ee

Browse files
committed
commit step
1 parent 4eae314 commit eb438ee

File tree

2 files changed

+11
-27
lines changed

2 files changed

+11
-27
lines changed

.github/workflows/build.yml

-25
This file was deleted.

.github/workflows/test.yml

+11-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@v3
1919

2020
- name: Build
21-
run: cargo build --all
21+
run: ./build-in-docker.sh
2222

2323
unit-tests:
2424
needs: [ build ]
@@ -36,4 +36,13 @@ jobs:
3636
- uses: actions/checkout@v3
3737

3838
- name: Integration tests
39-
run: cargo run -p integration-tests
39+
run: cargo run -p integration-tests
40+
41+
push:
42+
needs: [ unit-tests, integration-tests ]
43+
runs-on: ubuntu-latest
44+
steps:
45+
- name: Commit & Push changes
46+
uses: actions-js/push@master
47+
with:
48+
github_token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)