Resolve test failure in GitHub Actions test workflow #902
Workflow file for this run
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
| name: Shellcheck on scripts | |
| on: [ push, pull_request ] | |
| jobs: | |
| shellcheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up system | |
| shell: bash | |
| run: | | |
| sudo apt-get update -qq | |
| sudo apt-get install shellcheck | |
| - uses: actions/checkout@v5 | |
| - name: Run shellcheck | |
| run: | | |
| git grep -l -E '#!/bin/(bash|sh)' | xargs shellcheck |