forked from scopatz/nanorc
-
Notifications
You must be signed in to change notification settings - Fork 11
31 lines (29 loc) · 1.09 KB
/
shellcheck.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: shellcheck
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: ShellCheck
uses: ludeeus/[email protected]
#with:
# A space separated list of additional filename to check
#additional_files: # optional, default is
# Paths to ignore when running ShellCheck
#ignore: # optional, default is
# Minimum severity of errors to consider. Options: [error, warning, info, style]
#severity: # optional, default is
# Run shellcheck on _all_ files at once, instead of one at a time
#check_together: # optional, default is
# Directory to be searched for files. Defaults to .
#scandir: # optional, default is .
# Set to true to skip using problem-matcher
#disable_matcher: # optional, default is false
# Output format (checkstyle, diff, gcc, json, json1, quiet, tty)
#format: # optional, default is gcc