diff options
author | fx <[email protected]> | 2023-10-16 17:52:17 +0200 |
---|---|---|
committer | fx <[email protected]> | 2023-10-16 17:52:17 +0200 |
commit | 48943e0de28b99d7f108e96b7d250bbf1a6c5a5b (patch) | |
tree | b33a42de5a0534b48d2ada828ecde40e8d216bfe /.github/workflows/push.yml | |
parent | aa6e227d6c92fe908e24df72c8e9f0a3aa5a2784 (diff) | |
download | webol-48943e0de28b99d7f108e96b7d250bbf1a6c5a5b.tar webol-48943e0de28b99d7f108e96b7d250bbf1a6c5a5b.tar.gz webol-48943e0de28b99d7f108e96b7d250bbf1a6c5a5b.zip |
update readme with defaults
Diffstat (limited to '.github/workflows/push.yml')
-rw-r--r-- | .github/workflows/push.yml | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 1afe2d3..acffe51 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml | |||
@@ -12,7 +12,7 @@ env: | |||
12 | CARGO_TERM_COLOR: always | 12 | CARGO_TERM_COLOR: always |
13 | 13 | ||
14 | jobs: | 14 | jobs: |
15 | build: | 15 | test: |
16 | runs-on: ubuntu-latest | 16 | runs-on: ubuntu-latest |
17 | steps: | 17 | steps: |
18 | - name: Run sccache-cache | 18 | - name: Run sccache-cache |
@@ -35,6 +35,15 @@ jobs: | |||
35 | with: | 35 | with: |
36 | command: clippy | 36 | command: clippy |
37 | 37 | ||
38 | - name: run test | ||
39 | uses: actions-rs/cargo@v1 | ||
40 | with: | ||
41 | command: test | ||
42 | |||
43 | build: | ||
44 | runs-on: ubuntu-latest | ||
45 | needs: test | ||
46 | steps: | ||
38 | - name: Set up QEMU | 47 | - name: Set up QEMU |
39 | uses: docker/setup-qemu-action@v3 | 48 | uses: docker/setup-qemu-action@v3 |
40 | - name: Set up Docker Buildx | 49 | - name: Set up Docker Buildx |