add more overloads #27
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 | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
steps: | |
- | |
name: Checkout project # https://github.com/actions/checkout | |
uses: actions/checkout@v4 | |
with: | |
path: main | |
submodules: true | |
- | |
name: List programs | |
run: | | |
echo "::notice $(which shellcheck)" | |
- | |
name: Analyse the BASH code | |
run: | | |
cd main | |
shellcheck --severity=error $(git ls-files "*.sh") |