# .github/workflows/shell-script-check.yml -- check shell scripts # # This is a GitHub CI workflow # # to check shell scripts. name: shell script check on: # Run as part of CI checks on branch push and on merged pull request. - push - pull_request - workflow_dispatch # allow manual triggering jobs: check-shell-scripts: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Install shellcheck run: sudo apt-get install -y shellcheck - name: Check shell scripts run: tool/check-shell-scripts