summaryrefslogtreecommitdiff
path: root/Taskfile.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'Taskfile.yaml')
-rw-r--r--Taskfile.yaml14
1 files changed, 14 insertions, 0 deletions
diff --git a/Taskfile.yaml b/Taskfile.yaml
new file mode 100644
index 0000000..22af7b2
--- /dev/null
+++ b/Taskfile.yaml
@@ -0,0 +1,14 @@
+version: "3"
+
+tasks:
+ default:
+ cmds:
+ - go build ./cmd/timr
+
+ install:
+ cmds:
+ - go install ./cmd/timr
+
+ test:
+ cmds:
+ - go test -v ./...