Keep the status helper tests hermetic where HerdR is not installed #4
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: tests | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Install qmllint | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y qt6-declarative-dev-tools | |
| echo "/usr/lib/qt6/bin" >> "$GITHUB_PATH" | |
| - name: Shell scripts | |
| run: shellcheck -e SC2012 omaherd-hook tests/run tools/demo/capture.sh | |
| - name: Run the suite | |
| run: ./tests/run |