We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16b6989 commit 9e4bf3cCopy full SHA for 9e4bf3c
Taskfile.yml
@@ -6,6 +6,25 @@ vars:
6
sh: echo $(go list ./... | tr '\n' ' ')
7
8
tasks:
9
+ build:
10
+ desc: Build the project
11
+ deps:
12
+ - task: go:build
13
+
14
+ check:
15
+ desc: Check for problems with the project
16
17
+ - task: general:check-spelling
18
+ - task: go:lint
19
+ - task: go:test
20
+ - task: go:vet
21
22
+ format:
23
+ desc: Correct the formatting of the project's files
24
25
+ - task: general:format-prettier
26
+ - task: go:format
27
28
go:build:
29
desc: Build the project
30
cmds:
0 commit comments