lobby2/Taskfile.yml

15 lines
201 B
YAML
Raw Normal View History

2024-12-08 01:30:07 +00:00
# https://taskfile.dev
version: '3'
tasks:
docs:
cmds:
- swag i --parseDependency --dir api
2024-12-08 01:48:48 +00:00
silent: false
test:
cmds:
- go mod tidy
- go test -v ./...
silent: false