Skip to content

Merge pull request #74 from CLIMB-TRE/development #183

Merge pull request #74 from CLIMB-TRE/development

Merge pull request #74 from CLIMB-TRE/development #183

Workflow file for this run

name: Run tests
on:
push:
branches: [ "master", "development" ]
pull_request:
branches: [ "master", "development" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .
python -m pip install pytest
python -m pip install coverage
- name: Test with pytest
run: |
coverage run -m pytest -v
coverage report