Create shellcheck.yml (#4)

This commit is contained in:
Markus Ressel 2020-07-31 16:02:03 +02:00 committed by GitHub
parent 58c23b7206
commit e212d3e1c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

20
.github/workflows/shellcheck.yml vendored Normal file
View File

@ -0,0 +1,20 @@
# ShellCheck
name: CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
shellcheck:
name: Shellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master