diff options
| author | Paul Buetow <paul@buetow.org> | 2023-06-18 12:13:13 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2023-06-18 12:13:13 +0300 |
| commit | b9fe75d297116ed9c91cd312c5fc9fef2d1ef329 (patch) | |
| tree | 4e6be05d32cc50e21a554db5ef53dc28c07c63b3 /Taskfile.yml | |
| parent | 9e63c35bdb3f2a49f60eabb7f7f1ce8e3e7fe6e4 (diff) | |
add go-task dev
Diffstat (limited to 'Taskfile.yml')
| -rw-r--r-- | Taskfile.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Taskfile.yml b/Taskfile.yml index d910237..49cfde2 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -4,9 +4,15 @@ tasks: build: cmds: - go build -o gogios cmd/gogios/main.go - check: + dev: + deps: ["vet", "lint"] + cmds: + - go build -race -o gogios cmd/gogios/main.go + vet: cmds: - go vet **/*.go + lint: + cmds: - golangci-lint run lint-install: cmds: |
