Skip to content

fix doc link/add py2 #33

fix doc link/add py2

fix doc link/add py2 #33

Workflow file for this run

name: pythons tests
on: [push, pull_request]
jobs:
run:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
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