From 8742447cb5a03c1da9fb1d9d767d90f59ef5de58 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Fri, 1 Nov 2024 18:14:34 +1000 Subject: [PATCH] CI: print the tablet file name before running clean_svg on it --- .github/workflows/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 43f2c765..0c8f4f8d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -211,6 +211,7 @@ jobs: - name: run clean-svg on all .tablet files run: | for tabletfile in data/*.tablet; do + echo "Checking $tabletfile" ./tools/clean_svg.py --ignore-missing "$tabletfile" "" done