Skip to content

v1.1.0

v1.1.0 #13

Workflow file for this run

name: pythons tests
on: [push, pull_request]
jobs:
run:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
python-version: ["3.6", "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 }}
- name: Install dependencies
run: pip install pytest
- name: Run tests and collect coverage
run: pytest