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