
- update github.com/mistifyio/go-zfs dependency to github.com/mistifyio/go-zfs/v3, which contains various bugfixes, and adds go module support (which required a major version update): https://github.com/mistifyio/go-zfs/compare/f784269be439...v3.0.1 - remove github.com/pkg/errors dependency - various minor cleanups/fixes Full diff: https://github.com/containerd/zfs/compare/v1.0.0...v1.1.0 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
20 lines
517 B
Makefile
20 lines
517 B
Makefile
help: ## Print this help
|
|
@grep --no-filename -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sed 's/:.*## /·/' | sort | column -t -W 2 -s '·' -c $(shell tput cols)
|
|
|
|
all: test ## Run tests
|
|
|
|
-include rules.mk
|
|
-include lint.mk
|
|
|
|
test: ## Run tests
|
|
go test ./...
|
|
|
|
verify: gofumpt prettier lint ## Verify code style, is lint free, freshness ...
|
|
git diff | (! grep .)
|
|
|
|
fix: gofumpt-fix prettier-fix ## Fix code formatting errors
|
|
|
|
tools: ${toolsBins} ## Build Go based build tools
|
|
|
|
.PHONY: all help test tools verify
|