File: Makefile

package info (click to toggle)
golang-github-hashicorp-go-retryablehttp 0.7.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bookworm-backports, forky, sid, trixie
  • size: 172 kB
  • sloc: makefile: 12
file content (11 lines) | stat: -rw-r--r-- 145 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
default: test

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

updatedeps:
	go get -f -t -u ./...
	go get -f -u ./...

.PHONY: default test updatedeps