diff options
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 |
