Skip to content

Commit 7f89f05

Browse files
authored
feat: add shellcheck workflow
1 parent 25197c4 commit 7f89f05

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/tests.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
on:
2+
workflow_dispatch:
3+
push:
4+
branches:
5+
- main
6+
pull_request:
7+
branches:
8+
- main
9+
10+
name: "Run tests"
11+
permissions: {}
12+
13+
jobs:
14+
shellcheck:
15+
name: ShellCheck
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: actions/checkout@v4
19+
- name: Run ShellCheck
20+
uses: ludeeus/action-shellcheck@master

0 commit comments

Comments
 (0)