1
0
mirror of https://github.com/go-task/task.git synced 2025-12-26 00:31:38 +02:00
Files
task/taskfile/templates/default.yml

14 lines
222 B
YAML
Raw Permalink Normal View History

# yaml-language-server: $schema=https://taskfile.dev/schema.json
version: '3'
vars:
GREETING: Hello, world!
tasks:
default:
desc: Print a greeting message
cmds:
- echo "{{.GREETING}}"
silent: true