Skip to content

Bump ruff from 0.14.14 to 0.15.10 #26

Bump ruff from 0.14.14 to 0.15.10

Bump ruff from 0.14.14 to 0.15.10 #26

Workflow file for this run

name: Perform checks
permissions:
contents: read
on:
push:
branches:
- main
paths-ignore:
- '.github/ISSUE_TEMPLATE/*.yaml'
- '.github/CODEOWNERS'
- '.github/pull_request_template.md'
- 'docs/**/*.md'
- 'README.md'
pull_request:
branches:
- main
paths-ignore:
- '.github/ISSUE_TEMPLATE/*.yaml'
- '.github/CODEOWNERS'
- '.github/pull_request_template.md'
- 'docs/**/*.md'
- 'README.md'
jobs:
unit-tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.12"
- "3.13"
- "3.14"
steps:
- uses: actions/checkout@v6
- name: Install uv and set the Python version
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install the project
run: uv sync --locked --all-extras --dev
- name: Run tests
run: uv run pytest
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v6
- name: Install uv and set the Python version
uses: astral-sh/setup-uv@v7
- name: Set up Python
run: uv python install
- name: Install the project
run: uv sync --locked --all-extras --dev
- name: Run ruff check
run: uv run ruff check
- name: Run ruff format check
run: uv run ruff format --check .