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 7, 2024
1 parent 250a089 commit 356fd68
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,12 @@ jobs:
RUST_BACKTRACE: 1
RUST_LOG: warn

- name: Check for non-SHA1 filenames
run: |
if find target -name 'id:*' | grep .; then
exit 1
fi
all-checks:
needs:
- lint
Expand Down

0 comments on commit 356fd68

Please sign in to comment.