Skip to content

Commit 15a2161

Browse files
committed
Add github workflow for shellcheck
1 parent 39973cb commit 15a2161

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/shellcheck.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Run Shellcheck on push and PR
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
shellcheck:
9+
name: Shellcheck
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v3
13+
- name: Run ShellCheck
14+
uses: ludeeus/action-shellcheck@master
15+
env:
16+
SHELLCHECK_OPTS: -x
17+
with:
18+
additional_files: bookworm bullseye switchtoTesting switchtoUnstable

0 commit comments

Comments
 (0)