# https://taskfile.dev version: '3' env: GO: go GOTELEMETRY: off tasks: default: cmds: - task: build build: desc: Build the interface cmds: - $GO build -buildmode=exe -buildvcs=false -v clean: desc: Remove generated files cmds: - rm -f yuki tidy: desc: Update go.mod cmds: - $GO mod tidy