mirror of
https://github.com/slimtoolkit/slim.git
synced 2025-06-03 04:00:23 +00:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [github.com/docker/docker](https://github.com/docker/docker) from 24.0.9+incompatible to 25.0.6+incompatible. - [Release notes](https://github.com/docker/docker/releases) - [Commits](https://github.com/docker/docker/compare/v24.0.9...v25.0.6) --- updated-dependencies: - dependency-name: github.com/docker/docker dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
26 lines
694 B
Makefile
26 lines
694 B
Makefile
# Project packages.
|
|
PACKAGES=$(shell go list ./...)
|
|
|
|
# Flags passed to `go test`
|
|
BUILDFLAGS ?=
|
|
TESTFLAGS ?=
|
|
|
|
.PHONY: all build test coverage
|
|
.DEFAULT: all
|
|
|
|
all: build
|
|
|
|
build: ## no binaries to build, so just check compilation suceeds
|
|
go build ${BUILDFLAGS} ./...
|
|
|
|
test: ## run tests
|
|
go test ${TESTFLAGS} ./...
|
|
|
|
coverage: ## generate coverprofiles from the unit tests
|
|
rm -f coverage.txt
|
|
go test ${TESTFLAGS} -cover -coverprofile=cover.out ./...
|
|
|
|
.PHONY: help
|
|
help:
|
|
@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m\033[0m\n"} /^[a-zA-Z_\/%-]+:.*?##/ { printf " \033[36m%-27s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)
|