There was an error while loading. Please reload this page.
1 parent 8c35903 commit 4f23ea6Copy full SHA for 4f23ea6
1 file changed
.github/workflows/ci.yml
@@ -7,14 +7,21 @@ on:
7
pull_request:
8
9
jobs:
10
- code_quality:
11
- name: Code Quality
+ format:
+ name: Format
12
runs-on: ubuntu-latest
13
steps:
14
- - uses: actions/checkout@v4
15
- - uses: dtolnay/rust-toolchain@stable
+ - uses: actions/checkout@v6
+ - uses: dtolnay/rust-toolchain@nightly
16
- run: cargo fmt --check
17
- - run: cargo clippy
+
18
+ clippy:
19
+ name: Clippy
20
+ runs-on: ubuntu-latest
21
+ steps:
22
23
+ - uses: dtolnay/rust-toolchain@stable
24
+ - run: cargo clippy
25
26
integrity:
27
name: Integrity Test
@@ -248,7 +255,8 @@ jobs:
248
255
if: always()
249
256
# needs all build to detect cancellation
250
257
needs:
251
- - code_quality
258
+ - format
259
+ - clippy
252
260
- build-toolchains
253
261
- api_feature_levels
254
262
- api_minimal_features
0 commit comments