forked from pirsch-analytics/pirsch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
23 lines (18 loc) · 898 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
.PHONY: test deps referrer ua
all: deps referrer ua test
test:
go test -cover -race github.com/pirsch-analytics/pirsch/v6/pkg/analyzer
go test -cover -race github.com/pirsch-analytics/pirsch/v6/pkg/db
go test -cover -race github.com/pirsch-analytics/pirsch/v6/pkg/tracker/geodb
go test -cover -race github.com/pirsch-analytics/pirsch/v6/pkg/tracker/ip
go test -cover -race github.com/pirsch-analytics/pirsch/v6/pkg/tracker/referrer
go test -cover -race github.com/pirsch-analytics/pirsch/v6/pkg/tracker/session
go test -cover -race github.com/pirsch-analytics/pirsch/v6/pkg/tracker/ua
go test -cover -race github.com/pirsch-analytics/pirsch/v6/pkg/tracker
go test -cover -race github.com/pirsch-analytics/pirsch/v6/pkg/util
deps:
go get -u -t ./...
referrer:
go run scripts/update_referrer_list/update_referrer_list.go
ua:
go run scripts/update_ua_blacklist/update_ua_blacklist.go