From 7b0a1ca2409f57034847906e6b17214398e6cd6c Mon Sep 17 00:00:00 2001 From: EdJoPaTo Date: Thu, 13 May 2021 11:23:14 +0200 Subject: [PATCH] ci(actions): also allow non-clippy unknown-lints --- .github/workflows/rust.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 7b20c94..9e70b94 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -25,13 +25,13 @@ jobs: clippyargs: -W clippy::all -W clippy::pedantic # - os: ubuntu-latest # toolchain: 1.41.1 # Debian 10 Buster - # clippyargs: -W clippy::all -W clippy::pedantic -A clippy::unknown-clippy-lints + # clippyargs: -W clippy::all -W clippy::pedantic -A unknown-lints -A clippy::unknown-clippy-lints - os: ubuntu-latest toolchain: 1.47.0 # Alpine 3.13 - clippyargs: -W clippy::all -W clippy::pedantic -A clippy::unknown-clippy-lints + clippyargs: -W clippy::all -W clippy::pedantic -A unknown-lints -A clippy::unknown-clippy-lints - os: ubuntu-latest toolchain: 1.48.0 # Debian 11 Bullseye - clippyargs: -W clippy::all -W clippy::pedantic -A clippy::unknown-clippy-lints + clippyargs: -W clippy::all -W clippy::pedantic -A unknown-lints -A clippy::unknown-clippy-lints steps: - uses: actions/checkout@v2