We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a424fd6 commit 24c2837Copy full SHA for 24c2837
.github/workflows/ci.yml
@@ -3,6 +3,15 @@ name: CI
3
on: [push, pull_request]
4
5
jobs:
6
+ style:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v4
10
+ - uses: dtolnay/rust-toolchain@stable
11
+ with:
12
+ components: rustfmt
13
+ - run: cargo fmt --all --check
14
+
15
test:
16
name: Test
17
runs-on: ubuntu-latest
@@ -26,7 +35,6 @@ jobs:
26
35
cargo clean
27
36
cargo update -Z minimal-versions
28
37
cargo check
29
- - run: cargo fmt --all --check
30
38
31
39
MSRV:
32
40
0 commit comments