ak9im/.pre-commit-config.yaml

71 lines
1.9 KiB
YAML
Raw Normal View History

2023-01-28 19:24:26 +01:00
---
fail_fast: false
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.2.0
hooks:
- id: check-merge-conflict
- repo: meta
hooks:
- id: check-hooks-apply
- repo: local
hooks:
- id: statix
name: statix
entry: statix check .
always_run: false
pass_filenames: false
files: '\.*.nix$'
language: system
- id: nix-fmt
name: nix fmt
entry: nix fmt -- --check .
always_run: false
pass_filenames: false
files: '\.*.nix$'
language: system
- id: flake-check
name: nix flake check
entry: nix flake check --keep-going
always_run: false
pass_filenames: false
files: "flake.(nix|lock)$"
language: system
- id: go-mod-tidy
name: go-mod-tidy
entry: bash -c 'cd ./p2 && go mod tidy'
files: '\.(go|mod|sum)$'
language: system
2023-01-28 19:24:26 +01:00
- id: go-unit-tests
name: go-unit-tests
entry: bash -c "cd ./p2 && go test -v ./..."
files: '\.go$'
language: system
2023-01-28 19:24:26 +01:00
- id: golangci-lint
name: golangci-lint
entry: bash -c 'cd p2 && golangci-lint run'
# types: [go]
pass_filenames: false
language: system
2023-01-28 19:24:26 +01:00
- id: go-build
name: go-build
entry: bash -c 'cd ./p2 && go build -v .'
language: system
2023-01-28 19:24:26 +01:00
- id: nix-build-py
name: nix build py
entry: nix build .#p1
pass_filenames: false
# trigger this hook on changes to any of nix (also flake.lock) or
# python files.
files: '\.*.(nix|lock|py)$'
language: system
- id: nix-build-go
name: nix build go
entry: nix build .#p2
pass_filenames: false
# trigger this hook on changes to any of nix (also flake.lock) files
# and go's mod or sum files
files: '\.*.(nix|lock|mod|sum)$'
language: system