2024-09-02 13:12:29 +00:00
|
|
|
name: Pre-commit hooks
|
|
|
|
on: [pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
pre-commit:
|
|
|
|
name: Pre-commit
|
|
|
|
env:
|
|
|
|
# Skip pre-commit hooks which are executed by other actions.
|
|
|
|
SKIP: make-fmt
|
|
|
|
runs-on: ubuntu-22.04
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2024-11-05 13:50:49 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2024-09-02 13:12:29 +00:00
|
|
|
- name: Install deps
|
|
|
|
run: |
|
|
|
|
apt update
|
|
|
|
apt install -y pre-commit
|
|
|
|
- name: Run pre-commit
|
|
|
|
run: pre-commit run --all-files --hook-stage manual --color=always
|