We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34bc3ad commit 4d88f07Copy full SHA for 4d88f07
.github/workflows/rust.yaml
@@ -24,13 +24,14 @@ jobs:
24
uses: actions-rust-lang/setup-rust-toolchain@v1
25
with:
26
toolchain: stable
27
+ rustflags: ""
28
- name: Lint
29
run: |
30
rustup component add clippy
31
# Run normal configuration and fail on default warnings
32
cargo clippy -- -D warnings
33
# Run pedantic but do not fail
- cargo clippy -- -W clippy::all -W clippy::pedantic -W clippy::nursery -W clippy::cargo || 0
34
+ cargo clippy -- -W clippy::all -W clippy::pedantic -W clippy::nursery -W clippy::cargo
35
- name: Build
36
run: cargo build --verbose
37
- name: Test
0 commit comments