Skip to content

Model infrastructure complete, commence test running #412

Model infrastructure complete, commence test running

Model infrastructure complete, commence test running #412

name: Unit Tests - Windows
on: [ push ]
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
pip install .[test]
- name: Run unit tests
run: |
./ci/run_tests.bat