34 lines
879 B
YAML
34 lines
879 B
YAML
---
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.0.1
|
|
hooks:
|
|
- id: check-merge-conflict
|
|
- id: check-toml
|
|
- id: check-yaml
|
|
exclude: .drone.yml # drone's yaml is somewhat strange sometimes
|
|
- repo: local
|
|
hooks:
|
|
- id: check-compose-file
|
|
name: check compose file
|
|
language: system
|
|
entry: docker-compose -f docker-compose.yml config
|
|
pass_filenames: false
|
|
- id: yamllint
|
|
name: yamllint
|
|
language: system
|
|
entry: yamllint .
|
|
pass_filenames: false
|
|
- repo: https://git.dotya.ml/wanderer/hadolint-pre-commit
|
|
rev: v0.0.1
|
|
hooks:
|
|
- id: hadolint-container
|
|
- repo: https://github.com/dnephin/pre-commit-golang
|
|
rev: v0.5.0
|
|
hooks:
|
|
- id: go-mod-tidy
|
|
- id: go-unit-tests
|
|
- id: golangci-lint
|
|
- id: go-build
|
|
...
|