19 lines
455 B
YAML
19 lines
455 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
|
||
|
- 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
|