mirror of
https://github.com/containers/skopeo.git
synced 2025-09-18 16:08:59 +00:00
Bumps [github.com/containers/storage](https://github.com/containers/storage) from 1.42.0 to 1.43.0. - [Release notes](https://github.com/containers/storage/releases) - [Changelog](https://github.com/containers/storage/blob/main/docs/containers-storage-changes.md) - [Commits](https://github.com/containers/storage/compare/v1.42.0...v1.43.0) --- updated-dependencies: - dependency-name: github.com/containers/storage dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
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
|