Skip to content

changelog and version bump #4

changelog and version bump

changelog and version bump #4

Workflow file for this run

name: Tests on push
on: push
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Run pytest
run: uv run pytest
refurb:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Run refurb
run: uvx refurb .
ruff:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Run ruff check
run: uvx ruff check