[cost monitoring] Configure and roll out cost-monitoring across AWS clusters #1274
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: Run tests on the deployer code | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - deployer/** | |
| - tests/** | |
| - requirements.txt | |
| - dev-requirements.txt | |
| - pyproject.toml | |
| tags: | |
| - '**' | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - deployer/** | |
| - tests/** | |
| - requirements.txt | |
| - dev-requirements.txt | |
| - pyproject.toml | |
| workflow_dispatch: | |
| jobs: | |
| test-deployer: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.13' | |
| - name: Install dependencies | |
| run: | | |
| pip install -U pip | |
| pip install --editable . | |
| - name: Run tests | |
| run: | | |
| python -m pytest -vvv --color=yes |