File: Makefile

package info (click to toggle)
golang-github-hashicorp-go-azure-helpers 0.13.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 308 kB
  • sloc: makefile: 10
file content (12 lines) | stat: -rw-r--r-- 139 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
GO111MODULE=on

default: test

dependencies:
	go mod download

test: dependencies
	go vet ./...
	go test -race ./...

.PHONY: default test