Skip to content

Commit

Permalink
github: make it clearer which image contains RIFF metadata
Browse files Browse the repository at this point in the history
... if it exists it would be nice to know in what!
  • Loading branch information
peterbarker committed Jan 20, 2025
1 parent 07fba9e commit ee1b2d4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,12 @@ jobs:
./Sphinxsetup.sh
- name: Check image formats
run: |
find ./images/ -exec file {} + | grep RIFF -vzq
for i in $(find ./images/); do
if file "$i" | grep RIFF; then
echo "$i contains RIFF metadata; process file to remove"
exit 1
fi
done
- name: Check python3 flake8 formatting
run : |
set -eux -o pipefail
Expand Down

0 comments on commit ee1b2d4

Please sign in to comment.