Skip to content

Update README.md

Update README.md #10

Workflow file for this run

name: main
on: push
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
python:
- version: "3.12"
toxenv: "py312"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python.version }}
- name: Install tox
run: pip install tox
- name: Run pytest
run: tox -r -e ${{ matrix.python.toxenv }}
docs:
name: Docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install tox
run: pip install tox
- name: Build docs
run: tox -r -e docs