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.
2 parents 9a22b83 + 859a5ae commit 6d62cb2Copy full SHA for 6d62cb2
.github/workflows/build.yml
@@ -9,6 +9,7 @@ on:
9
10
env:
11
CARGO_TERM_COLOR: always
12
+ RUSTFLAGS: '-D warnings'
13
14
jobs:
15
# Run MIRI tests on nightly
@@ -111,7 +112,7 @@ jobs:
111
112
with:
113
components: clippy
114
targets: i686-unknown-linux-musl
- - run: cargo clippy --all --target i686-unknown-linux-musl --all-targets -- --deny warnings
115
+ - run: cargo clippy --all --target i686-unknown-linux-musl --all-targets
116
117
# Compilation check
118
check:
src/lib.rs
@@ -76,7 +76,6 @@
76
#![cfg_attr(docsrs, feature(doc_cfg), feature(doc_auto_cfg))]
77
#![cfg_attr(not(test), no_std)]
78
#![deny(missing_docs)]
79
-#![deny(warnings)]
80
81
pub use binary_heap::BinaryHeap;
82
pub use deque::Deque;
0 commit comments