Skip to content

bump version to 5.1.1 in pyproject.toml and uv.lock (#59) #317

bump version to 5.1.1 in pyproject.toml and uv.lock (#59)

bump version to 5.1.1 in pyproject.toml and uv.lock (#59) #317

Workflow file for this run

name: Units Tests
on: push
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
version: "latest"
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --extra dev
- name: Run Tests
run: uv run pytest tests/
- name: Run Linter
run: uv run ruff check src/