Skip to content

release 0.2.1

release 0.2.1 #42

Workflow file for this run

name: "Python"
on:
push: { branches: [ "develop" ], tags: [ "*" ] }
pull_request: { branches: [ "develop" ] }
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.x"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with: { python-version: "${{ matrix.python-version }}" }
- run: pipx install uv
- run: uv run mypy .
- run: uv run pytest
- run: uv run ruff check
- run: uv run ruff format --check