Skip to content

Commit 29470e6

Browse files
committed
Add shellcheck to CI workflow
1 parent a6f6c53 commit 29470e6

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

.github/workflows/CI.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: 'Continuous Integration'
2+
on: [push, pull_request]
3+
jobs:
4+
shellcheck:
5+
name: 'Shellcheck'
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: 'Check out the code'
9+
uses: actions/checkout@v1
10+
11+
- name: 'Run Shellcheck'
12+
uses: azohra/shell-linter@v0.2.0

0 commit comments

Comments
 (0)