Skip to content

Commit

Permalink
Check for non-SHA1 filenames in target directory
Browse files Browse the repository at this point in the history
  • Loading branch information
smoelius committed Dec 8, 2024
1 parent 85c00b9 commit ef8cb36
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ef8cb36

Please sign in to comment.