lobby2/Taskfile.yml
Adam Štrauch 3d77945981
All checks were successful
Test Project / test (push) Successful in 51s
Add workflow for testing
2024-12-08 02:48:48 +01:00

14 lines
201 B
YAML

# https://taskfile.dev
version: '3'
tasks:
docs:
cmds:
- swag i --parseDependency --dir api
silent: false
test:
cmds:
- go mod tidy
- go test -v ./...
silent: false