Skip to content

Tests

Tests #137

Workflow file for this run

name: Tests
on:
push:
schedule:
- cron: 0 0 * * 0
jobs:
tests:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
python-version:
- '3.5'
- '3.6'
- '3.7'
- '3.8'
- '3.9'
- '3.10'
steps:
- name: Checkout the repository
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --user --upgrade pip setuptools
python -m pip install --user -e .[dev]
- name: Run unit tests
run: |
python -m pytest tests