-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathMakefile
More file actions
29 lines (20 loc) · 521 Bytes
/
Makefile
File metadata and controls
29 lines (20 loc) · 521 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
init:
go get -u github.com/golang/dep/cmd/dep
go get -u golang.org/x/lint/golint
dep init;
vendor: init
dep ensure -update
lint:
goreportcard-cli -v
test:
go test -v ./... -cover
test-docs:
go test -v ./docs
docs-vendor:
yarn --cwd ./docs install
docs-build: docs-vendor
yarn --cwd ./docs build
docs-publish: docs-build
cd ./docs/src/.vuepress/dist; git init; git add -A; git commit -m 'deploy'; git push -f git@github.com:plandem/xlsx.git master:gh-pages;
docs-dev: docs-vendor
yarn --cwd ./docs dev