Skip to content

Commit 06eefd1

Browse files
committed
Run shellcheck as a github workflow
1 parent 3daced0 commit 06eefd1

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/shellcheck.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
on:
2+
pull_request:
3+
push:
4+
branches:
5+
- main
6+
7+
name: "Trigger: Push action"
8+
permissions: {}
9+
10+
jobs:
11+
shellcheck:
12+
name: Shellcheck
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v3
16+
- name: Run ShellCheck
17+
uses: ludeeus/action-shellcheck@master
18+
with:
19+
ignore_names: >-
20+
gradlew
21+
env:
22+
SHELLCHECK_OPTS: --external-sources

0 commit comments

Comments
 (0)