Skip to content

Commit 669afa0

Browse files
authored
add github actions workflow for shellcheck (#7)
1 parent 74bef20 commit 669afa0

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/run-tests.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: run-tests
2+
3+
'on':
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
branches:
9+
- '**'
10+
11+
jobs:
12+
shellcheck:
13+
runs-on: ubuntu-latest
14+
container:
15+
image: koalaman/shellcheck-alpine:stable
16+
steps:
17+
- uses: actions/checkout@v2
18+
- run: ./shellcheck.sh

0 commit comments

Comments
 (0)