mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-05-04 10:00:10 -05:00
5ebc596352
Bumps [github.com/gookit/config/v2](https://github.com/gookit/config) from 2.1.8 to 2.2.2. - [Release notes](https://github.com/gookit/config/releases) - [Commits](https://github.com/gookit/config/compare/v2.1.8...v2.2.2) --- updated-dependencies: - dependency-name: github.com/gookit/config/v2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
20 lines
286 B
Makefile
20 lines
286 B
Makefile
.PHONY: test
|
|
test:
|
|
go test -v -race ./...
|
|
|
|
.PHONY: simple-test
|
|
simple-test:
|
|
go test -v ./...
|
|
|
|
.PHONY: cover
|
|
cover:
|
|
go test -coverprofile=cover.out ./...
|
|
|
|
.PHONY: cover-html
|
|
cover-html: cover
|
|
go tool cover -html=cover.out
|
|
|
|
.PHONY: ycat/build
|
|
ycat/build:
|
|
go build -o ycat ./cmd/ycat
|