-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
43 lines (29 loc) · 710 Bytes
/
Copy pathMakefile
File metadata and controls
43 lines (29 loc) · 710 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
.PHONY: fmt test race vet stubs reviews matrix zenodo-api provider-release coverage build check lint vuln
fmt:
go fmt ./...
test:
go test ./...
race:
go test -race ./...
vet:
go vet ./...
stubs:
go run ./tools/checkstubs
reviews:
go run ./tools/checkreviews
matrix:
go run ./tools/checkfeaturematrix
zenodo-api:
go run ./tools/checkzenodoapi
provider-release:
go run ./tools/checkproviderrelease
coverage:
go test ./... -coverprofile=coverage.out
go tool cover -func=coverage.out
build:
pwsh -NoProfile -ExecutionPolicy Bypass -File scripts/build.ps1
lint:
golangci-lint run
vuln:
govulncheck ./...
check: fmt test race vet stubs reviews matrix zenodo-api provider-release coverage