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 a2170da commit 0c594d4Copy full SHA for 0c594d4
.github/workflows/build.yml
@@ -34,12 +34,16 @@ jobs:
34
submodules: recursive
35
36
- name: Install Rust
37
- run: rustup toolchain install ${{ matrix.rust }} --profile minimal --component rustfmt
+ run: rustup toolchain install ${{ matrix.rust }} --profile minimal --component rustfmt clippy
38
39
- name: Check format
40
shell: bash
41
run: rustup run ${{ matrix.rust }} cargo fmt --all -- --check
42
43
+ - name: Clippy
44
+ shell: bash
45
+ run: rustup run ${{ matrix.rust }} cargo clippy --all -- -D warnings
46
+
47
- name: Test (release)
48
49
run: rustup run ${{ matrix.rust }} cargo test --all --verbose --release
0 commit comments