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 4c5202a commit 5efdc52Copy full SHA for 5efdc52
.github/workflows/ci.yml
@@ -162,11 +162,11 @@ jobs:
162
clippy_check:
163
runs-on: ubuntu-latest
164
# Make sure CI fails on all warnings, including Clippy lints
165
- env:
166
- RUSTFLAGS: "-Dwarnings"
167
steps:
168
- uses: actions/checkout@v3
169
- - name: Run Clippy
+ - name: Find undocumented unsafe with clippy
+ run: cargo clippy --all-targets --all-features -- -A clippy::all -D clippy::undocumented_unsafe_blocks -D clippy::missing_safety_doc
+ - name: Run clippy
170
run: cargo clippy --all-targets --all-features
171
172
miri:
0 commit comments