Skip to content

Commit

Permalink
feat: introduce precommit target (#309)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomMoulard authored May 6, 2024
1 parent 28304aa commit a625306
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,13 @@ SHELL := /bin/bash
all: ## build pipeline
all: mod inst gen build spell lint test

.PHONY: precommit
precommit: ## validate the branch before commit
precommit: all vuln

.PHONY: ci
ci: ## CI build pipeline
ci: all vuln diff
ci: precommit diff

.PHONY: help
help:
Expand Down Expand Up @@ -39,7 +43,6 @@ gen: ## go generate

.PHONY: build
build: ## goreleaser build
build:
$(call print-target)
goreleaser build --clean --single-target --snapshot

Expand Down

0 comments on commit a625306

Please sign in to comment.