diff options
| author | Paul Buetow <paul@buetow.org> | 2025-07-14 22:27:33 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-07-14 22:27:33 +0300 |
| commit | cbb1581356ed59e81cf5fedb30145c7521165e3d (patch) | |
| tree | a36a91d3a0d2258977a43ea1dc9da8bfd2741ca6 /Taskfile.yaml | |
initial commit
Diffstat (limited to 'Taskfile.yaml')
| -rw-r--r-- | Taskfile.yaml | 15 |
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 |
