Fix: Look for active in the Checkbox service status #137
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: Test the toolbox package | |
| on: | |
| pull_request: | |
| paths: | |
| - 'cert-tools/toolbox/**' | |
| - '.github/workflows/test_toolbox.yaml' | |
| concurrency: | |
| # Cancel inprogress runs if new commit pushed | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test-package: | |
| name: Test the toolbox package | |
| runs-on: [self-hosted, jammy, x64] | |
| defaults: | |
| run: | |
| working-directory: cert-tools/toolbox | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.10" | |
| - name: install tox | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install tox | |
| - run: tox |