lobby2/Taskfile.yml
Adam Štrauch f7acde85c0
All checks were successful
Tests / test (push) Successful in 11s
node.json path instead of dir
2024-12-09 02:00:38 +01:00

22 lines
346 B
YAML

# https://taskfile.dev
version: '3'
vars:
VERSION: 0.0.0
tasks:
docs:
cmds:
- swag i --parseDependency --dir api
silent: false
test:
cmds:
- go mod tidy
- go test -v ./...
silent: false
build:
cmds:
- go mod tidy
- mkdir -p bin
- go build -o bin/lobby2-{{ .VERSION }}-linux-amd64 cli/*.go