From 1522fc4f6b93c6257ccd4b176c5854bd74d3051d Mon Sep 17 00:00:00 2001 From: "Cliff L. Biffle" Date: Thu, 4 Apr 2024 16:10:28 -0700 Subject: [PATCH] Turn Clippy checks back on. --- .github/workflows/build-one.yml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build-one.yml b/.github/workflows/build-one.yml index 895de6393f..8f8b22b279 100644 --- a/.github/workflows/build-one.yml +++ b/.github/workflows/build-one.yml @@ -79,14 +79,10 @@ jobs: target/release/humility -a target/${{ inputs.app_name }}/dist/build-${{ inputs.app_name }}-image-$image.zip manifest; \ done - # TODO: Clippy temporarily disabled 2024-04 while people clean up - # the new Clippy warnings resulting from the last toolchain - # upgrade. If you're reading this, try turning it back on and see - # if we're good yet. - #- name: Clippy - # if: inputs.os == 'ubuntu-latest' - # run: | - # cargo xtask clippy ${{ inputs.app_toml}} -- --deny warnings + - name: Clippy + if: inputs.os == 'ubuntu-latest' + run: | + cargo xtask clippy ${{ inputs.app_toml}} -- --deny warnings # upload the output of our build - name: Upload build archive