From 313ef7037d4859735c53a6c5c0e71e3931da6ab6 Mon Sep 17 00:00:00 2001 From: Meadowsys Date: Fri, 19 Jul 2024 22:10:03 -0700 Subject: [PATCH] fix clippy workflow --- .github/workflows/clippy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml index b880a94fe..45765b015 100644 --- a/.github/workflows/clippy.yml +++ b/.github/workflows/clippy.yml @@ -23,7 +23,7 @@ jobs: - name: run clippy run: | if [ ${{ inputs.error-on-warn }} ]; then - cargo clippy --verbose --features all-unstable,all-addons --deny warnings + cargo clippy --verbose --features all-unstable,all-addons -- --deny warnings else cargo clippy --verbose --features all-unstable,all-addons fi