lobby2/Taskfile.yml
Adam Štrauch 048b9b8547
All checks were successful
Tests / test (push) Successful in 11s
Automated release
2024-12-08 17:30:36 +01:00

22 lines
340 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 }}-amd64 cli/*.go