25 lines
983 B
YAML
25 lines
983 B
YAML
name: pre-commit
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches: [main, stable]
|
|
jobs:
|
|
main:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
|
|
- uses: astral-sh/setup-uv@5a7eac68fb9809dea845d802897dc5c723910fa3 # v7.1.3
|
|
with:
|
|
enable-cache: true
|
|
prune-cache: false
|
|
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
|
|
id: setup-python
|
|
with:
|
|
python-version-file: pyproject.toml
|
|
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
|
|
with:
|
|
path: ~/.cache/pre-commit
|
|
key: pre-commit|${{ hashFiles('pyproject.toml', '.pre-commit-config.yaml') }}
|
|
- run: uv run --locked --group pre-commit pre-commit run --show-diff-on-failure --color=always --all-files
|
|
- uses: pre-commit-ci/lite-action@5d6cc0eb514c891a40562a58a8e71576c5c7fb43 # v1.1.0
|
|
if: ${{ !cancelled() }}
|