From 7efc218637fb81d33c9ffdfc83e5e35166c46213 Mon Sep 17 00:00:00 2001 From: Philippe Renon Date: Sun, 28 Nov 2021 23:52:48 +0100 Subject: [PATCH] ci: Add `--deny warnings` to `RUSTFLAGS` --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 27bdf19b50..1457eaa5b6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,7 +50,7 @@ jobs: env: RUST_BACKTRACE: 1 CARGO_INCREMENTAL: 0 - RUSTFLAGS: "-C debuginfo=0" + RUSTFLAGS: "-C debuginfo=0 --deny warnings" OPTIONS: ${{ matrix.platform.options }} FEATURES: ${{ format(',{0}', matrix.platform.features ) }} CMD: ${{ matrix.platform.cmd }}