summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Peter <mail@david-peter.de>2022-05-28 22:25:20 +0200
committerDavid Peter <sharkdp@users.noreply.github.com>2022-05-28 22:39:33 +0200
commit42e7e9ec648357f9f692956a3c0a2c44af1da9b3 (patch)
tree0ccaa5eb65c29d54b74cc2e2dbb63ad25e007ead
parent40b368e76187ac6fbe0e0f4c590a7af28cd1a1b7 (diff)
Use minimal toolchain for clippy runs
-rw-r--r--.github/workflows/CICD.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml
index 930db3b..9e6a7f8 100644
--- a/.github/workflows/CICD.yml
+++ b/.github/workflows/CICD.yml
@@ -53,12 +53,12 @@ jobs:
toolchain: ${{ env.MIN_SUPPORTED_RUST_VERSION }}
default: true
components: clippy
+ profile: minimal
- name: Run clippy (on minimum supported rust version to prevent warnings we can't fix)
uses: actions-rs/cargo@v1
with:
command: clippy
args: --locked --all-targets --all-features
- profile: minimal # minimal component installation (ie, no documentation)
- name: Run tests
uses: actions-rs/cargo@v1
with: