From 6ebcb1abe216be545f9d2399167761d83bba6ff6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Jos=C3=A9=20Pereira?= Date: Fri, 20 Jan 2023 16:08:17 -0300 Subject: [PATCH] github: build: Use deny over forbid MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Check: https://github.com/rust-lang/rust/issues/81670 Signed-off-by: Patrick José Pereira --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3540fdf..4ece2d4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 }}) @@ -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