Some checks failed
Tests and linters / Lint (push) Failing after 11s
Tests and linters / Tests (push) Failing after 11s
Tests and linters / Staticcheck (push) Failing after 13s
Tests and linters / Run gofumpt (push) Failing after 13s
Tests and linters / Tests with -race (push) Failing after 16s
Tests and linters / gopls check (push) Failing after 16s
Vulncheck / Vulncheck (push) Successful in 32s
Pre-commit hooks / Pre-commit (push) Successful in 49s
Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
30 lines
829 B
YAML
30 lines
829 B
YAML
name: Pre-commit hooks
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
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 find python.
|
|
# So install everything manually.
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: 1.23
|
|
- 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
|