Skip to content

use multiple versions of python for tests #25

use multiple versions of python for tests

use multiple versions of python for tests #25

Workflow file for this run

name: Unit Tests For Development
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
strategy:
matrix:
python-version: [3.11, 3.12]
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install -r tests/requirements.txt
- name: Run unit tests and generate coverage report
run: |
pip install coverage
coverage run -m unittest discover -s tests -p 'test_*.py'
coverage report -m
- name: Upload coverage report to codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}