20 lines
494 B
YAML
20 lines
494 B
YAML
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
|
|
with:
|
|
fetch-depth: 0
|
|
- 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
|