Skip to content

Recording the serial interval #1775

Recording the serial interval

Recording the serial interval #1775

Workflow file for this run

name: Unit tests (pyEpiabm)
on:
push:
branches:
- main
pull_request:
branches:
- '**'
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: install pyEpiabm
run: |
python --version
python -m pip install --upgrade pip setuptools wheel
python -m pip install pyEpiabm/.
- name: run unit tests
run: |
python pyEpiabm/run_tests.py --unit