Check all shell scripts in our repo.

This commit is contained in:
2024-12-10 21:28:54 +01:00
parent 527df80623
commit 1981cac7de
2 changed files with 15 additions and 4 deletions

View File

@@ -27,3 +27,14 @@ jobs:
run: |
cd git/software/src &&
find . -iname '*.py' -exec ../../../flake-venv/bin/flake8 {} +
Check-Bash-Shellcheck:
runs-on: ubuntu-22.04-full
steps:
- name: Check out repository code
uses: actions/checkout@v4
with:
path: git
- name: Check bash scripts
run: |
cd git/software &&
find . -path ./lib -prune -o -name "*.sh" -exec shellcheck {} +