Skip to content

update version

update version #454

Workflow file for this run

---
name: tests
on:
push:
pull_request:
jobs:
tests:
name: Run tests (py${{ matrix.python }})
runs-on: ubuntu-latest
strategy:
matrix:
python:
- "3.11"
- "3.12"
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install poetry
run: pip install poetry
- name: Install dependencies
run: poetry install
- name: Run tests
run: poetry run tox