From d978a66e48bf5ec47363c4397f8fed9bd44a64a3 Mon Sep 17 00:00:00 2001 From: Leigh McCulloch <351529+leighmcculloch@users.noreply.github.com> Date: Wed, 10 Jan 2024 12:09:48 +1000 Subject: [PATCH] fix --- .github/workflows/rust.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 9e95335..49380d5 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -47,7 +47,8 @@ jobs: # Only error on warnings and checks for the msrv, because new versions of # Rust will frequently add new warnings and checks. if: matrix.rust == 'msrv' - run: echo RUSTFLAGS='-Dwarnings -Wclippy::all -Wclippy::pedantic' >> $GITHUB_ENV + run: echo RUSTFLAGS='-Wclippy::all -Wclippy::pedantic' >> $GITHUB_ENV + # TODO: run: echo RUSTFLAGS='-Dwarnings -Wclippy::all -Wclippy::pedantic' >> $GITHUB_ENV - run: rustup update - run: cargo version - run: rustup target add ${{ matrix.sys.target }}