summaryrefslogtreecommitdiff
path: root/Taskfile.yaml
diff options
context:
space:
mode:
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