Files
Manorit Chawdhry 68ae792a64 shellcheck ci (#66)
2021-09-18 15:48:02 +05:30

16 lines
328 B
YAML

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