-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaskfile.yml
More file actions
50 lines (43 loc) · 1.08 KB
/
Copy pathTaskfile.yml
File metadata and controls
50 lines (43 loc) · 1.08 KB
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
version: "3"
tasks:
test:
desc: Run smoke tests for a specific template using act
vars:
TEMPLATE: '{{.TEMPLATE | default "picolayer"}}'
cmds:
- act workflow_dispatch -W .github/workflows/test-single.yml --input template={{.TEMPLATE}}
test:picolayer:
desc: Run smoke tests for picolayer template
cmds:
- task: test
vars:
TEMPLATE: picolayer
test:devcontainers:
desc: Run smoke tests for devcontainers template
cmds:
- task: test
vars:
TEMPLATE: devcontainers
test:dev-common:
desc: Run smoke tests for dev-common template
cmds:
- task: test
vars:
TEMPLATE: dev-common
test:devpod:
desc: Run smoke tests for dev-common template
cmds:
- task: test
vars:
TEMPLATE: devpod
test:all:
desc: Run smoke tests for all templates
cmds:
- task: test:picolayer
- task: test:devcontainers
- task: test:dev-common
- task: test:devpod
list:
desc: List available workflows
cmds:
- act -l -W .github/workflows/