shellcheck ci (#66)

This commit is contained in:
Manorit Chawdhry 2021-09-18 15:48:02 +05:30 committed by GitHub
parent f84ee22d9b
commit 68ae792a64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 15 additions and 0 deletions

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

@ -0,0 +1,15 @@
name: Shellcheck
on: [ push ]
jobs:
lint:
# The type of runner that the job will run on
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Static analysis using shellcheck
run: |
sudo apt-get install shellcheck -y
shellcheck common/anything-sync-daemon.in -e SC1091