Adding tiny fix, podman stop t0 #5
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ShellCheck Check | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
shellcheck-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install ShellCheck | |
run: sudo apt-get install -y shellcheck | |
- name: Run ShellCheck on all scripts | |
run: | | |
find . -name "*.sh" -print0 | xargs -0 shellcheck -x || exit 255 |