Merge pull request #3541 from yuvipanda/hhmi #253
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: | |
- master | |
paths: | |
- deployer/** | |
- tests/** | |
- requirements.txt | |
- dev-requirements.txt | |
tags: | |
- "**" | |
pull_request: | |
branches: | |
- master | |
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@v4 | |
with: | |
python-version: "3.9" | |
- name: Install dependencies | |
run: | | |
pip install -U pip | |
pip install --editable . | |
- name: Run tests | |
run: | | |
python -m pytest -vvv --color=yes |