mirror of
https://github.com/go-task/task.git
synced 2025-12-25 16:09:26 +01:00
* Fixed check for an existing Taskfile: look for all possibilities, and not only `Taskfile.yml` specifically. * Added a description (`desc`) to the `default` task. Important to at least `task --list` work by default (a core feature). * Changed top comment to YAML language server comment.
14 lines
222 B
YAML
14 lines
222 B
YAML
# 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
|