Skip to content

Commit 8b78704

Browse files
authored
chore: add shellcheck to github actions (haoel#65)
1 parent 71c184e commit 8b78704

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/shellcheck.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: 'Shellcheck'
2+
3+
on:
4+
push:
5+
pull_request:
6+
branches:
7+
- master
8+
9+
jobs:
10+
shellcheck:
11+
name: Shellcheck
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v2
15+
16+
- name: Run ShellCheck
17+
uses: ludeeus/action-shellcheck@master

0 commit comments

Comments
 (0)