Fix 57a2f41df835f0ac4f52567e020df6ca6261fd7b #72
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 scripts | |
on: | |
[push, pull_request] | |
jobs: | |
shellCheck: | |
name: ShellCheck | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run shellcheck. | |
run: while read -r script; do shellcheck --exclude=SC1090,SC1091 $script; done < tests/files |