Skip to content

Fix typo

Fix typo #118

Workflow file for this run

name: Tests
on: push
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
os: [ubuntu-22.04, windows-2019]
name: ${{ matrix.os }} - Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- run: pip install poetry==1.8.3
- run: poetry install --with dev
- run: poetry run pytest -vv