summaryrefslogtreecommitdiff
path: root/Taskfile.yaml
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-07-14 22:27:33 +0300
committerPaul Buetow <paul@buetow.org>2025-07-14 22:27:33 +0300
commitcbb1581356ed59e81cf5fedb30145c7521165e3d (patch)
treea36a91d3a0d2258977a43ea1dc9da8bfd2741ca6 /Taskfile.yaml
initial commit
Diffstat (limited to 'Taskfile.yaml')
-rw-r--r--Taskfile.yaml15
1 files changed, 15 insertions, 0 deletions
diff --git a/Taskfile.yaml b/Taskfile.yaml
new file mode 100644
index 0000000..dc10b97
--- /dev/null
+++ b/Taskfile.yaml
@@ -0,0 +1,15 @@
+version: '3'
+
+tasks:
+ default:
+ cmds:
+ - go build -o bulg ./cmd/bulg
+ run:
+ cmds:
+ - go run ./cmd/bulg
+ test:
+ cmds:
+ - go test ./...
+ install:
+ cmds:
+ - go install ./cmd/bulg