Refactor CI/CD so support and staging jobs are separate, and multiple staging hubs are detected #1101
Workflow file for this run
This file contains 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 | |
tags: | |
- "**" | |
pull_request: | |
branches: | |
- main | |
paths: | |
- deployer/** | |
- tests/** | |
- requirements.txt | |
- dev-requirements.txt | |
workflow_dispatch: | |
jobs: | |
test-deployer: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
- name: Install dependencies | |
run: | | |
pip install -U pip | |
pip install --editable . | |
- name: Run tests | |
run: | | |
python -m pytest -vvv --color=yes |