File: Makefile

package info (click to toggle)
golang-github-cqroot-prompt 0.9.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 356 kB
  • sloc: makefile: 17; sh: 12
file content (17 lines) | stat: -rw-r--r-- 279 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.PHONY: test
test:
	go test -v -covermode=count -coverprofile=coverage.out ./...

.PHONY: check
check:
	golangci-lint run
	@echo
	gofumpt -l .

.PHONY: cover
cover: test
	go tool cover -html=coverage.out

.PHONY: screenshots
screenshots:
	bash $(CURDIR)/scripts/screenshots.bash