Skip to content

Fixing builds

Fixing builds #7

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
# 3.6 will reach EoL in December 2021
# https://devguide.python.org/#status-of-python-branches
python-version: [ "3.7", "3.8", "3.9", "3.10" ]
steps:
- uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Run tests
run: |
python -m pip install --upgrade pip
pip install pytest
python -m pytest tests