From 127c3c234576b3b59bf6187b941c9840e43898ea Mon Sep 17 00:00:00 2001 From: EdJoPaTo Date: Sun, 13 Jun 2021 09:26:51 +0200 Subject: [PATCH] ci(rust): improve clippy arguments --- .github/workflows/rust.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index a7f27e5..a945bad 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -18,23 +18,23 @@ jobs: include: - os: ubuntu-latest toolchain: stable - clippyargs: -D clippy::all -D clippy::pedantic + clippyargs: -D clippy::pedantic -D warnings - os: macOS-latest toolchain: stable - clippyargs: -D clippy::all -D clippy::pedantic + clippyargs: -D clippy::pedantic -D warnings - os: ubuntu-latest toolchain: nightly - clippyargs: -W clippy::all -W clippy::pedantic + clippyargs: -W clippy::pedantic # - os: ubuntu-latest # toolchain: 1.41.1 # Debian 10 Buster - # clippyargs: -W clippy::all -W clippy::pedantic -A unknown-lints -A clippy::unknown-clippy-lints + # clippyargs: -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 unknown-lints -A clippy::unknown-clippy-lints + clippyargs: -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 unknown-lints -A clippy::unknown-clippy-lints + clippyargs: -W clippy::pedantic -A unknown-lints -A clippy::unknown-clippy-lints steps: - uses: actions/checkout@v2