Skip to content

Commit 4d88f07

Browse files
Ensure empty rust flags
1 parent 34bc3ad commit 4d88f07

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/rust.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,14 @@ jobs:
2424
uses: actions-rust-lang/setup-rust-toolchain@v1
2525
with:
2626
toolchain: stable
27+
rustflags: ""
2728
- name: Lint
2829
run: |
2930
rustup component add clippy
3031
# Run normal configuration and fail on default warnings
3132
cargo clippy -- -D warnings
3233
# Run pedantic but do not fail
33-
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
3435
- name: Build
3536
run: cargo build --verbose
3637
- name: Test

0 commit comments

Comments
 (0)