Skip to content

Migrate from poetry to uv (#926) #1872

Migrate from poetry to uv (#926)

Migrate from poetry to uv (#926) #1872

Workflow file for this run

name: Linting
on:
push:
branches:
- master
pull_request:
jobs:
pre-commit:
name: Pre-commit
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v4
- name: Prepare and install deps
uses: ./.github/actions/install-deps
- uses: actions/cache@v4
name: Cache pre-commit hooks
with:
path: ~/.cache/pre-commit/
key: >
${{ format('pre-commit-{0}-{1}-{2}',
runner.os,
matrix.python-version,
hashFiles('.pre-commit-config.yaml')
) }}
restore-keys: |
pre-commit-${{ runner.os }}-${{ matrix.python-version }}-
pre-commit-${{ runner.os }}-
- name: Run pre-commit on all files
run: |
uvx pre-commit run --all-files --show-diff-on-failure --color=always
- name: Run python-typing-update
run: |
uvx pre-commit run --hook-stage manual python-typing-update --all-files --show-diff-on-failure --color=always