mirror of
https://github.com/graysky2/anything-sync-daemon.git
synced 2026-03-01 18:23:30 +01:00
16 lines
328 B
YAML
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
|