We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1c403a9 + 798da3b commit eda39a0Copy full SHA for eda39a0
1 file changed
.github/workflows/ci.yml
@@ -12,4 +12,15 @@ jobs:
12
steps:
13
- uses: actions/checkout@v4
14
- uses: dtolnay/rust-toolchain@stable
15
- - run: cargo test
+ - run: cargo test
16
+
17
+ lint:
18
+ runs-on: ubuntu-latest
19
+ timeout-minutes: 5
20
+ steps:
21
+ - uses: actions/checkout@v4
22
+ - uses: dtolnay/rust-toolchain@stable
23
+ with:
24
+ components: rustfmt, clippy
25
+ - run: cargo fmt --check
26
+ - run: cargo clippy --all-targets -- -D warnings
0 commit comments