Github Actions: Shellcheck on PR
This commit is contained in:
parent
4aa38ad8f9
commit
7ed59a69ad
12
.github/workflows/shellcheck.yml
vendored
Normal file
12
.github/workflows/shellcheck.yml
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
name: Run shellcheck on Pull Requests
|
||||
|
||||
on:
|
||||
- pull_request
|
||||
|
||||
jobs:
|
||||
shellcheck:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- run: |
|
||||
find $GITHUB_WORKSPACE -type f -and \( -name "*.sh" -or -name "quickemu" \) | xargs shellcheck
|
Loading…
Reference in New Issue
Block a user