Skip to content

Generate v2025.2.4 #1237

Generate v2025.2.4

Generate v2025.2.4 #1237

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
lint:
name: Lint
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}-py{1}-{2}',
runner.os,
env.PYTHON_VERSION,
hashFiles('.pre-commit-config.yaml')
) }}
- name: Run pre-commit on all files
run: |
uvx pre-commit run --all-files --show-diff-on-failure --color=always