summaryrefslogtreecommitdiff
path: root/Taskfile.yaml
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-06-25 22:45:26 +0300
committerPaul Buetow <paul@buetow.org>2025-06-25 22:45:26 +0300
commit17f7367b0a3aac087b36218fcfb0e79851c9e475 (patch)
tree2bf2ecd14abd3adbb536956891a5355bd7d5659f /Taskfile.yaml
parent804ad8450fcfdd0e5e89c239422f3f93002eef41 (diff)
fix
Diffstat (limited to 'Taskfile.yaml')
-rw-r--r--Taskfile.yaml15
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