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 561f34f commit f631b3aCopy full SHA for f631b3a
.github/workflows/ci.yml
@@ -23,15 +23,19 @@ jobs:
23
steps:
24
- uses: actions/checkout@v4
25
- name: Run cargo clippy
26
- run: cargo clippy --workspace --all-features -- -D warnings
+ run: |
27
+ rustup component add clippy
28
+ cargo clippy --workspace --all-features -- -D warnings
29
30
check_fmt:
31
runs-on: ubuntu-24.04
32
name: Checking fmt
33
34
35
- name: Run cargo fmt
- run: cargo fmt --all -- --check
36
37
+ rustup component add rustfmt
38
+ cargo fmt --all -- --check
39
40
rustdoc:
41
0 commit comments