Skip to content

fix: remove extraneous f-string prefix #9

fix: remove extraneous f-string prefix

fix: remove extraneous f-string prefix #9

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
name: Lint (ruff + black)
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
version: "latest"
python-version: "3.13"
- name: Create venv and install package
run: |
uv venv
uv pip install -e ".[dev]"
- name: ruff check
run: uv run ruff check .
- name: black --check
run: uv run black --check .
test:
name: Test (Python ${{ matrix.python-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.12", "3.13", "3.14"]
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
version: "latest"
python-version: ${{ matrix.python-version }}
- name: Create venv and install package
run: |
uv venv
uv pip install -e ".[test]"
- name: Run pytest
run: uv run pytest tests -q