summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Bütow <1224732+snonux@users.noreply.github.com>2025-06-19 23:55:53 +0300
committerGitHub <noreply@github.com>2025-06-19 23:55:53 +0300
commitcf6c471802e9ae896330d5d5ec88f9c9aedca82e (patch)
tree8dc2ddef9ce2aca770b327c9c82b58328e22ec2a
parentbf39c17221d1df1815c9cd78fa33b144c9d5dfb6 (diff)
parent07e2733e113b064611376ece88887dadc517dc38 (diff)
Merge pull request #5 from snonux/codex/modify-taskfile-to-add-default-target-and-run-target
Add run task and compile binary by default
-rw-r--r--Taskfile.yaml3
1 files changed, 3 insertions, 0 deletions
diff --git a/Taskfile.yaml b/Taskfile.yaml
index 7b595c1..6400005 100644
--- a/Taskfile.yaml
+++ b/Taskfile.yaml
@@ -3,6 +3,9 @@ version: '3'
tasks:
default:
cmds:
+ - go build -o tasksamurai ./cmd/tasksamurai
+ run:
+ cmds:
- go run ./cmd/tasksamurai
test:
cmds: