Migrate from poetry to uv #1157
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Linting & Testing | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
env: | |
RUNS_ON: ubuntu-latest | |
jobs: | |
pre-commit: | |
name: Pre-commit | |
strategy: | |
matrix: | |
python-version: ["3.9", "3.10"] | |
fail-fast: false | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v4 | |
- name: Prepare and install deps | |
uses: ./.github/actions/install-deps | |
with: | |
python-version: ${{ matrix.python-version }} | |
- uses: actions/cache@v4 | |
name: Cache pre-commit hooks | |
with: | |
path: ~/.cache/pre-commit/ | |
key: > | |
${{ format('pre-commit-{0}-{1}-{2}', | |
env.RUNS_ON, | |
matrix.python-version, | |
hashFiles('.pre-commit-config.yaml') | |
) }} | |
restore-keys: | | |
pre-commit-${{ env.RUNS_ON }}-${{ matrix.python-version }}- | |
pre-commit-${{ env.RUNS_ON }}- | |
- name: Run pre-commit on all files | |
run: | | |
uv run pre-commit run --all-files --show-diff-on-failure --color=always | |
- name: Run python-typing-update | |
run: | | |
uv run pre-commit run --hook-stage manual python-typing-update --all-files --show-diff-on-failure --color=always |