diff options
-rw-r--r-- | .github/workflows/pull_request.yml | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 40a7490..4466d7c 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml | |||
@@ -1,4 +1,4 @@ | |||
1 | name: build | 1 | name: check |
2 | 2 | ||
3 | on: | 3 | on: |
4 | pull_request: | 4 | pull_request: |
@@ -25,12 +25,17 @@ jobs: | |||
25 | components: rustfmt, clippy | 25 | components: rustfmt, clippy |
26 | override: true | 26 | override: true |
27 | 27 | ||
28 | - name: Run cargo check | 28 | - name: run cargo check |
29 | uses: actions-rs/cargo@v1 | 29 | uses: actions-rs/cargo@v1 |
30 | with: | 30 | with: |
31 | command: check | 31 | command: check |
32 | 32 | ||
33 | - name: Run Clippy | 33 | - name: run clippy |
34 | uses: actions-rs/cargo@v1 | 34 | uses: actions-rs/cargo@v1 |
35 | with: | 35 | with: |
36 | command: clippy | 36 | command: clippy |
37 | |||
38 | - name: run test | ||
39 | uses: actions-rs/cargo@v1 | ||
40 | with: | ||
41 | command: test | ||