Add shellcheck workflow and rename deb-build to commit-build

This commit is contained in:
BBaoVanC 2020-12-27 19:20:01 -06:00
parent 7aa3657ed9
commit bf832c359f
No known key found for this signature in database
GPG key ID: 18089E4E3CCF1D3A
2 changed files with 16 additions and 0 deletions

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

@ -0,0 +1,16 @@
# Run shellcheck on commit
name: Check with shellcheck
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run shellcheck
uses: ludeeus/action-shellcheck@master