From cc29e6f8bc9c42d8c47b91c5ad9421028ec398ec Mon Sep 17 00:00:00 2001 From: Rikko Date: Tue, 14 Jun 2022 23:13:43 +0530 Subject: [PATCH] Output filename before performing analysis --- .github/workflows/mod-analyze.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/mod-analyze.yml b/.github/workflows/mod-analyze.yml index e75370e..0d400b2 100644 --- a/.github/workflows/mod-analyze.yml +++ b/.github/workflows/mod-analyze.yml @@ -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