File: Makefile

package info (click to toggle)
golang-github-r3labs-diff 3.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 328 kB
  • sloc: makefile: 10
file content (11 lines) | stat: -rw-r--r-- 153 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
install:
	go install -v ${LDFLAGS}

deps:
	go get github.com/stretchr/testify

test:
	@go test -v -cover ./...

cover:
	@go test -coverprofile cover.out