Skip to content

Software refactor

Software refactor #2

Workflow file for this run

name: Project Test
on:
pull_request:
branches:
- master
- develop
jobs:
test:
runs-on: [ubuntu-latest]
strategy:
matrix:
python-version: [3.10, 3.11]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install base dependencies
run: |
python -m install pip --upgrade pip
pip install pytest pytest-cov
- name: Run project tests
run: python -m pytest tests/ --cov