-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaskfile.yml
More file actions
117 lines (101 loc) · 2.36 KB
/
Taskfile.yml
File metadata and controls
117 lines (101 loc) · 2.36 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
# https://taskfile.dev
version: "3"
vars:
COV_DATA: coverage.out
tasks:
default:
desc: List all available tasks
silent: true
cmds:
- task --list
tidy:
desc: Tidy dependencies in go.mod and go.sum
sources:
- "**/*.go"
- go.mod
- go.sum
cmds:
- go mod tidy
fmt:
desc: Run go fmt on all source files
sources:
- "**/*.go"
- .golangci.yml
cmds:
- golangci-lint fmt ./...
demo:
desc: Render the demo gifs
sources:
- ./docs/src/*.tape
- "**/*.go"
preconditions:
- sh: command -v vhs
msg: vhs not installed, see https://github.com/charmbracelet/vhs
cmds:
- for file in ./docs/src/*.tape; do vhs "$file"; done
test:
desc: Run the test suite
sources:
- "**/*.go"
- go.mod
- go.sum
- "**/testdata/**/*"
env:
# -race needs CGO
CGO_ENABLED: 1
cmds:
- go test -race ./... {{ .CLI_ARGS }}
bench:
desc: Run all project benchmarks
sources:
- "**/*.go"
cmds:
- go test ./... -run None -benchmem -bench . {{ .CLI_ARGS }}
lint:
desc: Run linting
deps:
- fmt
sources:
- "**/*.go"
- .golangci.yml
preconditions:
- sh: command -v golangci-lint
msg: staticcheck not installed, run `brew install golangci-lint`
- sh: command -v typos
msg: requires typos-cli, run `brew install typos-cli`
cmds:
- golangci-lint run ./...
- typos
doc:
desc: Render the pkg docs locally
preconditions:
- sh: command -v pkgsite
msg: pkgsite not installed, run `go install golang.org/x/pkgsite/cmd/pkgsite@latest`
cmds:
- pkgsite -open
cov:
desc: Calculate test coverage and render the html
generates:
- "{{ .COV_DATA }}"
cmds:
- go test -race -cover -covermode atomic -coverprofile {{ .COV_DATA }} ./...
- go tool cover -html {{ .COV_DATA }}
check:
desc: Run tests and linting in one
cmds:
- task: test
- task: lint
sloc:
desc: Print lines of code
cmds:
- fd . -e go | xargs wc -l | sort -nr | head
clean:
desc: Remove build artifacts and other clutter
cmds:
- go clean ./...
- rm -rf {{ .COV_DATA }}
update:
desc: Updates dependencies in go.mod and go.sum
cmds:
- go get -u ./...
- go mod tidy