Skip to content

Commit 1fa2b68

Browse files
committed
Don't --allow deprecated for clippy on CI
The version update in GitoxideLabs#51 is creating new such warnings. This suggests they should be enabled in order to avoid putting off fixes. `--allow deprecated` could be put back later, if necessary.
1 parent 90afecb commit 1fa2b68

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109
run: cargo install sarif-fmt
110110
- name: Check
111111
run: >
112-
cargo clippy --workspace --all-features --all-targets --message-format=json -- -D warnings --allow deprecated
112+
cargo clippy --workspace --all-features --all-targets --message-format=json -- -D warnings
113113
| clippy-sarif
114114
| tee clippy-results.sarif
115115
| sarif-fmt
@@ -120,4 +120,4 @@ jobs:
120120
sarif_file: clippy-results.sarif
121121
wait-for-processing: true
122122
- name: Report status
123-
run: cargo clippy --workspace --all-features --all-targets -- -D warnings --allow deprecated
123+
run: cargo clippy --workspace --all-features --all-targets -- -D warnings

0 commit comments

Comments
 (0)