Skip to content

Update docs

Update docs #118

Workflow file for this run

name: Run tests
on:
- pull_request
jobs:
test:
runs-on: ${{ matrix.platform }}
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up PDM
uses: pdm-project/setup-pdm@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install deps
run: pdm install -G :all
- name: Run tests
run: pdm run pytest