[#1118] .forgejo: Add pre-commit action

Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
pull/1112/head
Evgenii Stratonikov 2024-05-06 08:58:55 +03:00 committed by Evgenii Stratonikov
parent fc7b07f314
commit a23d53b2d4
1 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,25 @@
name: Pre-commit hooks
on: [pull_request]
jobs:
precommit:
name: Pre-commit
env:
# Skip pre-commit hooks which are executed by other actions.
SKIP: make-lint,go-staticcheck-repo-mod,go-unit-tests,gofumpt
runs-on: ubuntu-22.04
# If we use actions/setup-python from either Github or Gitea,
# the line above fails with a cryptic error about not being able to found python.
# So install everything manually.
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.22
- name: Set up Python
run: |
apt update
apt install -y pre-commit
- name: Run pre-commit
run: pre-commit run --color=always --hook-stage manual --all-files