From 044fa93eec36760354b5d425b14bbe9b9ef99701 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20H=C3=A4ggblad?= Date: Fri, 27 Jan 2023 09:46:29 +0100 Subject: [PATCH] ci: fix nightly clippy Remove `--all-features` from the clippy command because 1. with the removal of `cocunut` it's not really needed 2. the new `mobile` flag is a bit hacky and mutually incompatible with some existing configs --- .github/workflows/nightly_build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nightly_build.yml b/.github/workflows/nightly_build.yml index 2a7384f2d7..050ef7fc8e 100644 --- a/.github/workflows/nightly_build.yml +++ b/.github/workflows/nightly_build.yml @@ -106,7 +106,7 @@ jobs: if: ${{ matrix.rust != 'nightly' }} with: command: clippy - args: --workspace --all-targets -- -D warnings + args: --workspace -- -D warnings - name: Reclaim some disk space uses: actions-rs/cargo@v1