Skip to content

Commit 6ebcb1a

Browse files
github: build: Use deny over forbid
Check: rust-lang/rust#81670 Signed-off-by: Patrick José Pereira <[email protected]>
1 parent f714e95 commit 6ebcb1a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- uses: actions-rs/clippy-check@v1
3636
with:
3737
token: ${{ secrets.GITHUB_TOKEN }}
38-
args: --all-targets --all-features -- -F warnings
38+
args: --all-targets --all-features -- -D warnings
3939

4040
test:
4141
name: Unitest (${{ matrix.os }})
@@ -53,7 +53,7 @@ jobs:
5353
- uses: actions-rs/cargo@v1
5454
env:
5555
RUST_BACKTRACE: full
56-
RUSTFLAGS: -F warnings
56+
RUSTFLAGS: -D warnings
5757
with:
5858
command: test
5959
args: --all --all-features

0 commit comments

Comments
 (0)