Skip to content

Calibration (#27)

Calibration (#27) #19

name: Run Tests on Versioned Branches
on:
push:
branches:
- 'v*' # Matches any branch that starts with 'v'
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Set PYTHONPATH
run: echo "PYTHONPATH=$PWD" >> $GITHUB_ENV
- name: Run tests
run: |
pip install pytest
pytest