diff options
author | FxQnLr <[email protected]> | 2023-10-15 19:08:23 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2023-10-15 19:08:23 +0200 |
commit | 435a21ade9c92a458186961e28c5c08e60ad8266 (patch) | |
tree | b96ab6746f8eab47dbba65197439700d195dc234 /.github/workflows | |
parent | 686e694cc335ce7d825ad3561dcc34b456143453 (diff) | |
download | webol-435a21ade9c92a458186961e28c5c08e60ad8266.tar webol-435a21ade9c92a458186961e28c5c08e60ad8266.tar.gz webol-435a21ade9c92a458186961e28c5c08e60ad8266.zip |
Update pull_request.yml
Diffstat (limited to '.github/workflows')
-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 | ||