fortlit/Makefile
Marvin Steadfast 08e2c5e5fc
Some checks reported errors
continuous-integration/drone/push Build encountered an error
finally pterm based refactoring
needed to drop the approach to print the quote in a terminal box.
2021-03-03 14:03:18 +01:00

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/