From 471da999b91ff73684c898bc924e08e031beaff9 Mon Sep 17 00:00:00 2001 From: Diogo Matsubara Date: Tue, 14 Jan 2025 14:10:32 +0100 Subject: [PATCH] chore: remove --all-features since it's computed (#253) --- .github/workflows/sync-lockfiles.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync-lockfiles.yml b/.github/workflows/sync-lockfiles.yml index 383d928..04f52a5 100644 --- a/.github/workflows/sync-lockfiles.yml +++ b/.github/workflows/sync-lockfiles.yml @@ -125,7 +125,7 @@ jobs: - name: Rectify lockfile # NOTE: Checking the package for errors will rectify the Cargo.lock while preserving # the dependency versions fetched from source. - run: cargo clippy --manifest-path ${{ steps.crate-path.outputs.value }}/Cargo.toml --all-targets ${{ steps.clippy-options.outputs.value }} --all-features -- --deny warnings + run: cargo clippy --manifest-path ${{ steps.crate-path.outputs.value }}/Cargo.toml --all-targets ${{ steps.clippy-options.outputs.value }} -- --deny warnings - name: Rectify lockfile for zenoh-c opaque-types if: ${{ matrix.dependant == 'eclipse-zenoh/zenoh-c' }}