1
0
mirror of https://github.com/go-task/task.git synced 2025-01-26 05:27:15 +02:00
2022-10-14 16:51:14 -03:00

17 lines
194 B
YAML

# https://taskfile.dev
version: '3'
vars:
GREETING: Hello, World!
interval: "500ms"
tasks:
default:
sources:
- "src/*"
cmds:
- echo "{{.GREETING}}"
silent: false