We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 133f8ae commit d2f9aa1Copy full SHA for d2f9aa1
.github/workflows/rust.yml
@@ -10,19 +10,24 @@ jobs:
10
check:
11
name: Lint & Test
12
runs-on: ubuntu-latest
13
-
+
14
steps:
15
- name: Checkout
16
uses: actions/checkout@v4
17
18
- name: Install Rust
19
uses: dtolnay/rust-toolchain@stable
20
21
+ - name: Install rustfmt and clippy components
22
+ run: |
23
+ rustup component add rustfmt
24
+ rustup component add clippy
25
26
- name: Format Check
27
run: cargo fmt --all -- --check
28
29
- name: Clippy Check
30
run: cargo clippy --all-targets --all-features -- -D warnings
31
32
- name: Run Tests
33
run: cargo test --all
0 commit comments