GitRepositoryManager/Taskfile.yml
Mikołaj Pęczkowski 5445ce1ccf Restructure project directories
Follow the standard of all go projects
2024-01-13 15:39:40 +01:00

21 lines
353 B
YAML

version: '3'
tasks:
pull:
cmds:
- go mod download
silent: true
test:
cmds:
- go test $(find './internal' -name "*.go" -exec dirname {} \; | uniq | grep '/') -cover
build:
dir: "cmd"
cmds:
- mkdir -p ../build
- go build -o ../build/grm
install:
deps:
- build
cmds:
- go install .