Files
yuki/Taskfile.yml
2026-01-22 13:43:48 -03:00

25 lines
355 B
YAML

# 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