Skip to content

Commit

Permalink
github: build: Use deny over forbid
Browse files Browse the repository at this point in the history
Check: rust-lang/rust#81670

Signed-off-by: Patrick José Pereira <[email protected]>
  • Loading branch information
patrickelectric committed Jan 20, 2023
1 parent f714e95 commit 6ebcb1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-targets --all-features -- -F warnings
args: --all-targets --all-features -- -D warnings

test:
name: Unitest (${{ matrix.os }})
Expand All @@ -53,7 +53,7 @@ jobs:
- uses: actions-rs/cargo@v1
env:
RUST_BACKTRACE: full
RUSTFLAGS: -F warnings
RUSTFLAGS: -D warnings
with:
command: test
args: --all --all-features
Expand Down

0 comments on commit 6ebcb1a

Please sign in to comment.