Github Actions: Shellcheck on PR

This commit is contained in:
Philipp Kiemle 2020-08-20 20:36:08 +02:00
parent 4aa38ad8f9
commit 7ed59a69ad

12
.github/workflows/shellcheck.yml vendored Normal file
View 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