Skip to content

Commit

Permalink
Allow dead_code for now, since we are in early prototyping
Browse files Browse the repository at this point in the history
  • Loading branch information
faern committed Jul 24, 2024
1 parent e3530a9 commit 7903ddb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ on:

env:
CARGO_TERM_COLOR: always
RUSTFLAGS: --deny warnings
# TODO: Do not allow dead_code once crate is out of early prototyping stage
RUSTFLAGS: --deny warnings --allow dead_code

jobs:
build-and-test:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,6 @@ jobs:

- name: Clippy check
env:
RUSTFLAGS: --deny warnings
# TODO: Do not allow dead_code once crate is out of early prototyping stage
RUSTFLAGS: --deny warnings --allow dead_code
run: cargo clippy --locked --all-targets

0 comments on commit 7903ddb

Please sign in to comment.