Output filename before performing analysis

This commit is contained in:
Rikko 2022-06-14 23:13:43 +05:30
parent 46b5c2ee26
commit cc29e6f8bc

View file

@ -19,4 +19,7 @@ jobs:
sudo apt install jq
- name: Analysing mods
run: |
for jsonfile in $(git ls-files '*.json'); do jq -e < $jsonfile > /dev/null || exit 1; done
for jsonfile in $(git ls-files '*.json'); do
echo "Analyzing $jsonfile"
jq -e < $jsonfile > /dev/null || exit 1;
done