Create a scripted demo environment that works around the operator while it's broken. #200
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 Tests | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: [ main ] | |
| paths: | |
| - '.github/workflows/shellcheck.yml' | |
| - 'Makefile' | |
| - '**.sh' | |
| pull_request: | |
| branches: [ main ] | |
| paths: | |
| - '.github/workflows/shellcheck.yml' | |
| - 'Makefile' | |
| - '**.sh' | |
| jobs: | |
| shellcheck: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| cache: 'pip' | |
| cache-dependency-path: | | |
| **/requirements*.txt | |
| pyproject.toml | |
| - name: Test with shellcheck | |
| run: make shellcheck |