motr/.taskfiles/Go.yml

14 lines
171 B
YAML

# https://taskfile.dev
version: '3'
vars:
GREETING: Hello, World!
tasks:
build:
desc: Build the project
cmds:
- echo "{{.GREETING}}"
silent: true