2025-03-10 09:37:54 +01:00
|
|
|
name: pre-commit
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
pre-commit:
|
2025-03-10 09:40:22 +01:00
|
|
|
runs-on: self-hosted
|
2025-03-10 09:37:54 +01:00
|
|
|
steps:
|
2025-03-10 09:47:02 +01:00
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Pre-commit
|
|
|
|
run: pre-commit run --show-diff-on-failure --color=always --all-files
|