Skip to content

Fix a README typo

Fix a README typo #12

Workflow file for this run

name: Python package
on:
push:
branches:
- master
tags:
- '**'
pull_request:
jobs:
run-tests:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install tox
- name: Run tests
run: tox