Skip to content

Bump ty from 0.0.12 to 0.0.13 (#1911) #432

Bump ty from 0.0.12 to 0.0.13 (#1911)

Bump ty from 0.0.12 to 0.0.13 (#1911) #432

Workflow file for this run

name: lint
on:
pull_request:
push:
branches: [main]
jobs:
pre-commit:
name: "Python ${{ matrix.python-version }}"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: "${{ matrix.python-version }}"
- name: Install the project
run: uv sync --all-extras --dev
- name: Run pre-commit
env:
SKIP: ${{ github.ref == 'refs/heads/main' && 'no-commit-to-branch' || '' }}
run: uv run pre-commit run --show-diff-on-failure --color=always --all-files