mirror of
https://gitea.invidious.io/iv-org/youtube-utils.git
synced 2024-08-15 00:53:16 +00:00
Add basic github action that runs shellcheck
This commit is contained in:
parent
fd739cc5ea
commit
22ecea0128
1 changed files with 14 additions and 0 deletions
14
.github/workflows/shellcheck.yml
vendored
Normal file
14
.github/workflows/shellcheck.yml
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
name: shellcheck-validation
|
||||
|
||||
on: push
|
||||
|
||||
jobs:
|
||||
shellcheck:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Clone repository
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Execute ShellCheck
|
||||
run: shellcheck scripts/*.sh
|
Loading…
Reference in a new issue