Skip to content

Commit

Permalink
Merge branch 'peak:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
tarikozyurtt authored Jul 4, 2024
2 parents f235f22 + f79ed0b commit ffc65a4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
default: all

.PHONY: all
all: clean build test check
all: clean build test check checkgomod

VERSION := `git describe --abbrev=0 --tags || echo "0.0.0"`
BUILD := `git rev-parse --short HEAD`
Expand Down Expand Up @@ -61,4 +61,9 @@ gogenerate:
clean:
@rm -f ./s5cmd

.PHONY: checkgomod
checkgomod: ## Check go.mod file
@go mod tidy
@git diff --exit-code -- go.sum go.mod

.NOTPARALLEL:

0 comments on commit ffc65a4

Please sign in to comment.