diff options
Diffstat (limited to 'Taskfile.yml')
| -rw-r--r-- | Taskfile.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Taskfile.yml b/Taskfile.yml index 4363202..7a7ec41 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -5,9 +5,13 @@ tasks: cmds: - go build -o gosd cmd/gosd/main.go dev: - deps: ["vet", "lint"] + deps: ["test", "vet", "lint"] cmds: - go build -race -o gosd cmd/gosd/main.go + test: + cmds: + - go clean -testcache + - go test -v ./... vet: cmds: - go vet **/*.go |
