Evgenii Stratonikov
6ae8667fb4
All checks were successful
Vulncheck / Vulncheck (pull_request) Successful in 3m9s
DCO action / DCO (pull_request) Successful in 3m59s
Tests and linters / gopls check (pull_request) Successful in 4m22s
Tests and linters / Run gofumpt (pull_request) Successful in 4m31s
Tests and linters / Lint (pull_request) Successful in 4m42s
Pre-commit hooks / Pre-commit (pull_request) Successful in 4m58s
Build / Build Components (pull_request) Successful in 5m9s
Tests and linters / Staticcheck (pull_request) Successful in 5m7s
Tests and linters / Tests with -race (pull_request) Successful in 5m11s
Tests and linters / Tests (pull_request) Successful in 5m41s
Tests and linters / Run gofumpt (push) Successful in 2m31s
Vulncheck / Vulncheck (push) Successful in 2m40s
Pre-commit hooks / Pre-commit (push) Successful in 3m4s
Build / Build Components (push) Successful in 3m13s
Tests and linters / Staticcheck (push) Successful in 3m22s
Tests and linters / Lint (push) Successful in 3m47s
Tests and linters / gopls check (push) Successful in 3m48s
Tests and linters / Tests (push) Successful in 4m18s
Tests and linters / Tests with -race (push) Successful in 4m22s
Signed-off-by: Evgenii Stratonikov <e.stratonikov@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
|