Skip to content
This repository was archived by the owner on Jun 16, 2024. It is now read-only.

Commit 9313843

Browse files
authored
Merge pull request #16 from jonasbb/ci
Run shellcheck during CI
2 parents cddcf62 + 54a9dae commit 9313843

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: "Check Script Files"
2+
on:
3+
pull_request:
4+
push:
5+
6+
jobs:
7+
check_script_files:
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v2
12+
- name: "Shellcheck"
13+
run: shellcheck --check-sourced *.sh

0 commit comments

Comments
 (0)