aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/pull_request.yml24
-rw-r--r--.github/workflows/push.yml9
2 files changed, 23 insertions, 10 deletions
diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml
index 9a1d005..ed01e9e 100644
--- a/.github/workflows/pull_request.yml
+++ b/.github/workflows/pull_request.yml
@@ -12,7 +12,7 @@ env:
12 CARGO_TERM_COLOR: always 12 CARGO_TERM_COLOR: always
13 13
14jobs: 14jobs:
15 test: 15 check:
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,7 +35,25 @@ jobs:
35 with: 35 with:
36 command: clippy 36 command: clippy
37 37
38 - name: run test 38 check-release:
39 runs-on: ubuntu-latest
40 steps:
41 - name: Run sccache-cache
42 uses: mozilla-actions/[email protected]
43
44 - uses: actions/checkout@v4
45 - uses: actions-rs/toolchain@v1
46 with:
47 toolchain: stable
48 components: rustfmt, clippy
49 override: true
50
51 - name: run cargo check
52 uses: actions-rs/cargo@v1
53 with:
54 command: check --release
55
56 - name: run clippy
39 uses: actions-rs/cargo@v1 57 uses: actions-rs/cargo@v1
40 with: 58 with:
41 command: test 59 command: clippy --release
diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml
index acffe51..1f48264 100644
--- a/.github/workflows/push.yml
+++ b/.github/workflows/push.yml
@@ -28,17 +28,12 @@ jobs:
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 --release
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 --release
37
38 - name: run test
39 uses: actions-rs/cargo@v1
40 with:
41 command: test
42 37
43 build: 38 build:
44 runs-on: ubuntu-latest 39 runs-on: ubuntu-latest