Skip to content

chore: onboard renovate #228

chore: onboard renovate

chore: onboard renovate #228

Workflow file for this run

name: Check
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv & Python
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
python-version-file: "pyproject.toml"
- name: Ruff format
run: |
uv run ruff format --diff --exit-non-zero-on-format
- name: Ruff check
run: |
uv run ruff check