Bash-Linter hinzugefügt (#62)
This commit is contained in:
parent
d2c63dac7e
commit
5bc7b4621d
1 changed files with 15 additions and 0 deletions
15
.github/workflows/bash_lint.yml
vendored
Normal file
15
.github/workflows/bash_lint.yml
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
name: bash-lint
|
||||
on: [pull_request]
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2
|
||||
- name: Run Shellcheck
|
||||
uses: azohra/shell-linter@latest
|
||||
with:
|
||||
path: "/github/workspace/*.sh"
|
||||
|
||||
# https://github.com/azohra/shell-linter
|
Loading…
Reference in a new issue