-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_taskfile.yml
More file actions
49 lines (42 loc) · 931 Bytes
/
Copy pathtest_taskfile.yml
File metadata and controls
49 lines (42 loc) · 931 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
version: '3'
banner: true
categories: ["test", "core", "generate"]
tasks:
# Test category tasks (should appear first due to categories order)
test:run:
category: test
desc: Run tests
cmds:
- echo "running tests"
test:build:
category: test
desc: Build tests
cmds:
- echo "building tests"
# Core category tasks (should appear second)
build:
category: core
desc: Build the project
cmds:
- echo "building"
install:
category: core
desc: Install dependencies
cmds:
- echo "installing"
# Generate category tasks (should appear third)
generate:
category: generate
desc: Generate code
cmds:
- echo "generating"
# General category task (no category, should appear first by default)
clean:
desc: Clean up
cmds:
- echo "cleaning"
# Another general task
help:
desc: Show help
cmds:
- echo "help"