# Makefile all: build lint tidy ci: build lint tidy test-unit build: go build ./vpcv1 test-unit: go test `go list ./... | grep vpcv1` -v -tags=unit test-integration: go test `go list ./... | grep vpcv1` -v -tags=integration -skipForMockTesting -testCount test-examples: go test `go list ./... | grep vpcv1` -v -tags=examples lint: golangci-lint --timeout=3m run -v --allow-parallel-runners tidy: go mod tidy