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 6840b00 commit e732fe8Copy full SHA for e732fe8
.github/workflows/ci.yml
@@ -25,6 +25,14 @@ jobs:
25
uses: actions/checkout@v4
26
- name: Set up Rust
27
run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
28
+ - name: Set up Clippy
29
+ run: rustup component add clippy
30
+ - name: Run Clippy
31
+ working-directory: ${{ matrix.directory }}
32
+ run: cargo clippy -- -D warnings # TODO: replace with `cargo clippy -- -W clippy::pedantic -D warnings`
33
+ - name: Check formatting
34
35
+ run: cargo fmt -- --check
36
- name: Build
37
working-directory: ${{ matrix.directory }}
38
run: cargo build --verbose
0 commit comments