Create shellcheck.yml

This commit is contained in:
Tommaso Chiti 2021-09-28 20:40:50 +02:00 committed by GitHub
parent ff1acae69b
commit 60d702d827
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

22
.github/workflows/shellcheck.yml vendored Normal file
View file

@ -0,0 +1,22 @@
name: ShellCheck
on:
push:
branches:
- master
- main
pull_request:
paths-ignore:
- '**.gitignore'
- '**.md'
- '**.yml'
- 'LICENSE'
jobs:
shellcheck:
name: Bash syntax checker
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master