We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c19bd05 commit bbdd400Copy full SHA for bbdd400
.github/workflows/lint.yml
@@ -32,3 +32,7 @@ jobs:
32
with:
33
file_or_dir: test
34
strict: true
35
+
36
+ - name: default lint all (continue on error)
37
+ continue-on-error: true
38
+ uses: ./
entrypoint.sh
@@ -24,8 +24,7 @@ fi
24
25
# Enable globstar so ** globs recursively
26
shopt -s globstar
27
-# Use the current directory by default
28
-options+=("${INPUT_FILE_OR_DIR:-.}")
29
-shopt -u globstar
30
31
-yamllint "${options[@]}"
+yamllint "${options[@]}" ${INPUT_FILE_OR_DIR:-.}
+shopt -u globstar
0 commit comments