File: Makefile

package info (click to toggle)
golang-github-hashicorp-terraform-json 0.5.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 2,572 kB
  • sloc: makefile: 31
file content (20 lines) | stat: -rw-r--r-- 411 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
GOTOOLS = \
	gotest.tools/gotestsum

test: tools
	gotestsum --format=short-verbose $(TEST) $(TESTARGS)

generate:
	cd test-fixtures && make generate

modules:
	go mod download && go mod verify

test-circle:
	mkdir -p test-results/terraform-json
	gotestsum --format=short-verbose --junitfile test-results/terraform-json/results.xml

tools:
	go install $(GOTOOLS)

.PHONY: test generate modules test-circle tools