-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_index_order.yml
More file actions
52 lines (45 loc) · 1001 Bytes
/
test_index_order.yml
File metadata and controls
52 lines (45 loc) · 1001 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
50
51
52
version: '3'
banner: true
categories: ["core", "test"]
tasks:
# Core category tasks - should appear in index order: 3, 1, 5, then by line number
build:
category: core
index: 3
desc: Build the project
cmds:
- echo "building"
install:
category: core
index: 1
desc: Install dependencies
cmds:
- echo "installing"
deploy:
category: core
index: 5
desc: Deploy application
cmds:
- echo "deploying"
# Test category tasks - should appear in index order: 2, 10, then by line number
test:unit:
category: test
index: 2
desc: Run unit tests
cmds:
- echo "unit testing"
test:integration:
category: test
index: 10
desc: Run integration tests
cmds:
- echo "integration testing"
# General category tasks (no category) - should appear first, ordered by line number
clean:
desc: Clean up
cmds:
- echo "cleaning"
help:
desc: Show help
cmds:
- echo "help"