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 d147122 commit 3956b18Copy full SHA for 3956b18
.github/workflows/ci-sub.yaml
@@ -0,0 +1,20 @@
1
+name: "Test Suite"
2
+on:
3
+ push:
4
+ pull_request:
5
+
6
+jobs:
7
+ formatting:
8
+ name: cargo fmt
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - run: rustup self uninstall
12
+ - uses: actions/checkout@v5
13
+ - uses: actions-rust-lang/setup-rust-toolchain@v1
14
+ with:
15
+ toolchain: stable
16
+ components: clippy
17
+ rust-src-dir: proj
18
+ override: false
19
+ - uses: Swatinem/rust-cache@v2
20
+ - run: cargo clippy --all-targets --all-features --locked -- -D
0 commit comments