Skip to content

Commit 88e78ec

Browse files
committed
xmllinter
1 parent 67aa069 commit 88e78ec

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

.github/workflows/xmllinter.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,17 @@ jobs:
5656
echo "files<<EOF" >> $GITHUB_OUTPUT
5757
echo "${FILES}" >> $GITHUB_OUTPUT
5858
echo "EOF" >> $GITHUB_OUTPUT
59+
# iterate through the Bash array
60+
for item in "${FILES[@]}"; do
61+
echo "${item}"
62+
done
5963
6064
- name: Lint XML
6165
run: |
6266
#echo ${{ contains(fromJSON(steps.read-json.outputs.config).ignore, 'bullshit') }}
6367
#echo ${{ contains(fromJSON(steps.read-json.outputs.config).ignore, '/path/to/file') }}
64-
for fn in ${{ steps.find-xml.outputs.files }}; do
65-
echo "the next file is $fn"
66-
cat $fn
67-
done
68+
#for fn in ${{ steps.find-xml.outputs.files }}; do
69+
# echo "the next file is $fn"
70+
# cat $fn
71+
#done
72+

0 commit comments

Comments
 (0)