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 c945f33 commit 973fca6Copy full SHA for 973fca6
1 file changed
.github/workflows/check.yaml
@@ -19,27 +19,13 @@ jobs:
19
runs-on: ubuntu-latest
20
steps:
21
- uses: actions/checkout@v6
22
- - uses: actions-rs/toolchain@v1
23
- with:
24
- profile: minimal
25
- toolchain: stable
26
- components: rustfmt
27
- override: true
28
- - uses: actions-rs/cargo@v1
29
30
- command: fmt
31
- args: --all -- --check
+ - run: rustup toolchain install stable
+ - run: rustup run stable cargo fmt --all -- --check
32
33
clippy:
34
name: cargo clippy
35
36
37
38
39
40
41
- components: clippy
42
43
44
45
- command: clippy
+ - run: rustup run stable cargo clippy --all
0 commit comments