feat: add in helper function to upload to katbin #483
This file contains hidden or 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
| on: [push, pull_request] | |
| name: ShellCheck scripts | |
| jobs: | |
| shellCheck: | |
| name: ShellCheck | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run shellcheck. | |
| run: | | |
| while read -r script; do shellcheck --exclude=SC1090,SC1091 $script; done < files |