Marvin Steadfast
08e2c5e5fc
Some checks reported errors
continuous-integration/drone/push Build encountered an error
needed to drop the approach to print the quote in a terminal box.
24 lines
417 B
Makefile
24 lines
417 B
Makefile
.PHONY: generate
|
|
generate:
|
|
go generate -v
|
|
|
|
.PHONY: build
|
|
build:
|
|
goreleaser build --rm-dist --snapshot
|
|
|
|
.PHONY: release
|
|
release:
|
|
goreleaser release --rm-dist --snapshot --skip-publish
|
|
|
|
.PHONY: test
|
|
test:
|
|
GOFLAGS=-mod=vendor go test -race -cover -v ./...
|
|
|
|
.PHONY: lint
|
|
lint:
|
|
golangci-lint run --enable-all --disable gomnd --disable godox --disable exhaustivestruct --timeout 5m
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf dist/
|