diff options
| author | Paul Buetow <paul@buetow.org> | 2025-06-25 22:45:26 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-06-25 22:45:26 +0300 |
| commit | 17f7367b0a3aac087b36218fcfb0e79851c9e475 (patch) | |
| tree | 2bf2ecd14abd3adbb536956891a5355bd7d5659f /Taskfile.yaml | |
| parent | 804ad8450fcfdd0e5e89c239422f3f93002eef41 (diff) | |
fix
Diffstat (limited to 'Taskfile.yaml')
| -rw-r--r-- | Taskfile.yaml | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/Taskfile.yaml b/Taskfile.yaml index 22af7b2..0adfee8 100644 --- a/Taskfile.yaml +++ b/Taskfile.yaml @@ -1,14 +1,15 @@ -version: "3" +version: '3' tasks: default: cmds: - - go build ./cmd/timr - - install: + - go build -o timr ./cmd/timr + run: cmds: - - go install ./cmd/timr - + - go run ./cmd/timr test: cmds: - - go test -v ./... + - go test ./... + install: + cmds: + - go install ./cmd/timr |
