| 12345678910111213141516171819202122232425262728293031323334353637 |
- .PHONY: test test-cover failfast profile clean format build
- PKG=github.com/zricethezav/gitleaks
- VERSION := `git fetch --tags && git tag | sort -V | tail -1`
- LDFLAGS=-ldflags "-X=github.com/zricethezav/gitleaks/v8/version.Version=$(VERSION)"
- COVER=--cover --coverprofile=cover.out
- test-cover:
- go test -v ./... --race $(COVER) $(PKG)
- go tool cover -html=cover.out
- format:
- go fmt ./...
- test: config/gitleaks.toml format
- go test -v ./... --race $(PKG)
- failfast: format
- go test -failfast ./...
- build: config/gitleaks.toml format
- go mod tidy
- go build $(LDFLAGS)
- lint:
- golangci-lint run
- clean:
- rm -rf profile
- find . -type f -name '*.got.*' -delete
- find . -type f -name '*.out' -delete
- profile: build
- ./scripts/profile.sh './gitleaks' '.'
- config/gitleaks.toml: $(wildcard cmd/generate/config/**/*)
- go generate ./...
|