Skip to content

Add a link to the documentation in the README #30

Add a link to the documentation in the README

Add a link to the documentation in the README #30

Workflow file for this run

name: Test python package
on:
push
jobs:
build:
strategy:
fail-fast: false
matrix:
python-version:
- '3.9'
- '3.10'
- '3.11'
- '3.12'
os:
- ubuntu-latest
- macos-latest
# Needs pthread.h
#- windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e '.[tests]'
- run: pytest