Skip to content

Commit

Permalink
Merge pull request #445 from reitermarkus/ci-deny-warnings
Browse files Browse the repository at this point in the history
Only deny warnings in CI.
  • Loading branch information
Dirbaio authored Jan 24, 2024
2 parents 9a22b83 + 859a5ae commit 6d62cb2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:

env:
CARGO_TERM_COLOR: always
RUSTFLAGS: '-D warnings'

jobs:
# Run MIRI tests on nightly
Expand Down Expand Up @@ -111,7 +112,7 @@ jobs:
with:
components: clippy
targets: i686-unknown-linux-musl
- run: cargo clippy --all --target i686-unknown-linux-musl --all-targets -- --deny warnings
- run: cargo clippy --all --target i686-unknown-linux-musl --all-targets

# Compilation check
check:
Expand Down
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@
#![cfg_attr(docsrs, feature(doc_cfg), feature(doc_auto_cfg))]
#![cfg_attr(not(test), no_std)]
#![deny(missing_docs)]
#![deny(warnings)]

pub use binary_heap::BinaryHeap;
pub use deque::Deque;
Expand Down

0 comments on commit 6d62cb2

Please sign in to comment.