diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a77c2087..a49a5eae 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -208,6 +208,13 @@ jobs: RUST_BACKTRACE: 1 RUST_LOG: warn + - name: Check for non-SHA1 filenames + if: ${{ matrix.sha1_filenames }} + run: | + if find target -name 'id:*' | grep .; then + exit 1 + fi + all-checks: needs: - lint