Archived
15 lines
423 B
Makefile
15 lines
423 B
Makefile
.PHONY: fmt test test-transit
|
|
|
|
fmt:
|
|
gofmt -w $$(find . -name '*.go' -type f)
|
|
|
|
test:
|
|
go test ./...
|
|
|
|
test-transit:
|
|
@test -n "$(WORKLOAD_STS_TEST_BAO_ADDR)" || \
|
|
(echo 'WORKLOAD_STS_TEST_BAO_ADDR is required' >&2; exit 1)
|
|
@test -n "$(WORKLOAD_STS_TEST_BAO_TOKEN)" || \
|
|
(echo 'WORKLOAD_STS_TEST_BAO_TOKEN is required' >&2; exit 1)
|
|
go test -v ./internal/signing -run TestTransitSignerProducesJWTVerifiedByPublishedJWKS
|