1
0
mirror of https://github.com/go-task/task.git synced 2025-08-10 22:42:19 +02:00

feat: remove v2 support (#1447)

* feat: remove v2 support

* docs: update v2 schema docs
This commit is contained in:
Pete Davison
2023-12-29 20:26:02 +00:00
committed by GitHub
parent 212ff42304
commit 2b67d05b9d
31 changed files with 317 additions and 990 deletions

View File

@@ -1,4 +1,4 @@
version: 1
version: "1"
tasks:
foo:
cmds:

View File

@@ -1,4 +1,4 @@
version: '2'
version: "2"
tasks:
foo:

9
testdata/version/v3/Taskfile.yml vendored Normal file
View File

@@ -0,0 +1,9 @@
version: "3"
tasks:
foo:
cmds:
- echo "Foo"
bar:
cmds:
- echo "Bar"