aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFxQnLr <[email protected]>2023-10-15 19:08:23 +0200
committerGitHub <[email protected]>2023-10-15 19:08:23 +0200
commit435a21ade9c92a458186961e28c5c08e60ad8266 (patch)
treeb96ab6746f8eab47dbba65197439700d195dc234
parent686e694cc335ce7d825ad3561dcc34b456143453 (diff)
downloadwebol-435a21ade9c92a458186961e28c5c08e60ad8266.tar
webol-435a21ade9c92a458186961e28c5c08e60ad8266.tar.gz
webol-435a21ade9c92a458186961e28c5c08e60ad8266.zip
Update pull_request.yml
-rw-r--r--.github/workflows/pull_request.yml11
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 @@
1name: build 1name: check
2 2
3on: 3on:
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