Skip to content

Add renovate.json

Add renovate.json #7

Workflow file for this run

name: CI
on: [ push, pull_request ]
jobs:
lint-and-test:
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
matrix:
python-version:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
- run: uv sync --all-extras --dev
- run: uv run ruff check
- run: uv run ruff format --diff
- run: uv run pytest