Skip to content

Commit e25b180

Browse files
committed
Add initial linting GitHub Action workflow
Note that this only catches lint issues in the script for now. Closes #4
1 parent 7e9ba67 commit e25b180

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/main.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Main Workflow
2+
3+
on: push
4+
5+
jobs:
6+
shellcheck:
7+
name: Lint Action script
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v1
12+
- name: Run shellcheck command
13+
uses: ludeeus/[email protected]

0 commit comments

Comments
 (0)