From 410a602638fa1162b728396b057ea708b1f273ff Mon Sep 17 00:00:00 2001 From: Valentin Brandl Date: Thu, 27 Jul 2023 10:37:23 +0200 Subject: [PATCH] Enable pedantic lints --- .github/workflows/rust.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index adec173..144422c 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -42,13 +42,9 @@ jobs: key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} - name: Clippy Linting - run: cargo clippy --all-features -- -Dclippy::all - # TODO - # run: cargo clippy --all-features -- -Dclippy::all -Dclippy::pedantic + run: cargo clippy --all-features -- -Dclippy::all -Dclippy::pedantic - name: Clippy Test Linting - run: cargo clippy --tests -- -Dclippy::all - # TODO - # run: cargo clippy --tests -- -Dclippy::all -Dclippy::pedantic + run: cargo clippy --tests -- -Dclippy::all -Dclippy::pedantic test: