-
Notifications
You must be signed in to change notification settings - Fork 0
/
Taskfile.yml
110 lines (95 loc) · 2.5 KB
/
Taskfile.yml
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
# https://taskfile.dev
version: "3"
vars:
COV_DATA: coverage.out
PACKAGE: github.com/FollowTheProcess/msg
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"
preconditions:
- sh: command -v golines
msg: golines not installed, see https://github.com/segmentio/golines
cmds:
- go fmt ./...
- golines . --ignore-generated --write-output
test:
desc: Run the test suite
sources:
- "**/*.go"
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 the linters and auto-fix if possible
sources:
- "**/*.go"
- .golangci.yml
cmds:
- golangci-lint run --fix
preconditions:
- sh: command -v golangci-lint
msg: golangci-lint not installed, see https://golangci-lint.run/usage/install/#local-installation
docs:
desc: Render the pkg docs locally
cmds:
- pkgsite -open
preconditions:
- sh: command -v pkgsite
msg: pkgsite not installed, run go install golang.org/x/pkgsite/cmd/pkgsite@latest
demo:
desc: Render the demo gifs
sources:
- ./docs/src/*.tape
- ./docs/src/*.go
preconditions:
- sh: command -v vhs
msg: vhs not installed, see https://github.com/charmbracelet/vhs
cmds:
- vhs ./docs/src/*.tape
- silicon ./docs/src/main.go --output ./docs/img/demo.png --background "#7983FF" --language go --shadow-blur-radius 10 --window-title {{.PACKAGE}}
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 mody tidy