Skip to content

Commit

Permalink
Added make file
Browse files Browse the repository at this point in the history
  • Loading branch information
evg4b committed Sep 22, 2024
1 parent 52019ec commit a537f28
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
format:
gofmt -l -s -w .
gofumpt -l -w .
golangci-lint run --fix

update_deps:
go get -u ./...
go mod tidy

test:
go test -v ./...

test-cover:
go test -tags release -timeout 1m -race -v -coverprofile=coverage.out ./...

build:
go build ./...

build-release:
go build -tags release ./...

0 comments on commit a537f28

Please sign in to comment.