chore: bootstrap hostexecutor from template

This commit is contained in:
gitea-actions[bot]
2026-05-12 21:47:36 +02:00
parent 59b1a3a4ec
commit 04fa3cf36e
16 changed files with 108 additions and 130 deletions

View File

@@ -7,10 +7,10 @@ tasks:
build:
desc: Build the binary
deps: [generate]
cmds: [go build -o bin/__PROJECT_NAME__ ./cmd/__PROJECT_NAME__]
cmds: [go build -o bin/hostexecutor ./cmd/hostexecutor]
run:
deps: [build]
cmds: [./bin/__PROJECT_NAME__]
cmds: [./bin/hostexecutor]
test:
desc: Run all tests
deps: [generate]