Skip to content

Link GH as changelog #2202

Link GH as changelog

Link GH as changelog #2202

Workflow file for this run

---
name: Lint
"on":
push:
pull_request:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install UV
uses: astral-sh/setup-uv@v5
with:
version: ">=0.5.24"
- name: Install dependencies
run: uv sync --all-extras --frozen
- name: Lint
run: ./scripts/lint.sh