Skip to content

Add (experimental) language selection #46

Add (experimental) language selection

Add (experimental) language selection #46

Workflow file for this run

name: lint
on:
pull_request:
push:
branches: [main]
jobs:
pre-commit:
runs-on: ubuntu-latest
name: "Python ${{ matrix.python-version }}"
strategy:
fail-fast: false
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: "${{ matrix.python-version }}"
- name: Install the project
run: uv sync --all-extras --dev
- name: Run pre-commit
run: uv run pre-commit run --show-diff-on-failure --color=always --all-files