Update shellcheck.yml
Some checks failed
shellcheck

This commit is contained in:
d3vyce
2023-03-28 20:35:48 +02:00
committed by GitHub
parent 0faa27c1d8
commit d61d3c9deb

View File

@ -9,6 +9,6 @@ jobs:
- name: Set up shellcheck
run: |
apt update
apt install -y shellcheck
apt install -y shellcheck
- name: Analysing the code with shellcheck
run: shellcheck -S warning *.sh
run: find . -type f -name "*.sh" | xargs shellcheck -S warning