lobby2/Taskfile.yml
Adam Štrauch a5c7a5fea7
Some checks failed
Tests / test (push) Successful in 12s
Build and release / test (release) Failing after 0s
Release pipeline
2024-12-08 12:22:35 +01:00

21 lines
317 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
- go build -o lobby2-{{ .VERSION }}-amd64 cli/*.go