We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70a6226 commit 2244ab1Copy full SHA for 2244ab1
1 file changed
action.yaml
@@ -22,6 +22,7 @@ runs:
22
- name: Check
23
shell: bash
24
run: |
25
+ path=${{ inputs.folder }}
26
failures=0
27
while read -rd $'\0' file; do
28
if ! ./arkscript --format "$file" --check; then
@@ -30,7 +31,6 @@ runs:
30
31
else
32
echo "✅ $(basename $file)"
33
fi
- path=${{ inputs.folder }}
34
done < <(find "${path%/}" -type f -name "*.ark" -maxdepth 1 -print0)
35
36
echo "$failures file(s) need to be formatted"
0 commit comments