From 9d0518a2686a4071aa8adb0858d56aa80ee4d4ab Mon Sep 17 00:00:00 2001 From: dylanhitt Date: Sun, 29 Dec 2024 17:13:41 -0500 Subject: [PATCH] chore: ensure we include petstore in tests/build --- Makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 492ee8f3..7678b4cf 100644 --- a/Makefile +++ b/Makefile @@ -5,15 +5,15 @@ ci: fmt lint cover ci-full: ci dependencies-analyze openapi-check check-all-modules lint-markdown bench test: - go test ./... - -check-all-modules: - ./check-all-modules.sh + go test ./... ./examples/petstore/... cover: - go test -coverprofile=coverage.out ./... + go test -coverprofile=coverage.out ./... ./examples/petstore/... go tool cover -func=coverage.out +check-all-modules: + ./check-all-modules.sh + cover-web: cover go tool cover -html=coverage.out @@ -21,7 +21,7 @@ bench: go test -bench ./... -benchmem build: - go build -v ./... + go build -v ./... ./examples/petstore/... dependencies-analyze: which govulncheck || go install golang.org/x/vuln/cmd/govulncheck@latest