Skip to content

Commit 6597594

Browse files
authored
Fix atmos terraform run (#183)
* Fix atmos terraform run * Update terraform-module.yaml
1 parent 8913dc9 commit 6597594

File tree

1 file changed

+16
-14
lines changed

1 file changed

+16
-14
lines changed

.github/atmos/terraform-module.yaml

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,21 @@ docs:
1919
indent_level: 2
2020

2121
commands:
22-
- name: test init
23-
description: Initialize tests
24-
steps:
25-
- "make -C test/src init"
22+
- name: test
23+
commands:
24+
- name: "init"
25+
description: Initialize tests
26+
steps:
27+
- "make -C test/src init"
2628

27-
- name: test run
28-
description: Run tests
29-
steps:
30-
- "cd test/src && go mod tidy"
31-
- "cd test/src && go test -v -timeout 60m"
29+
- name: "run"
30+
description: Run tests
31+
steps:
32+
- "cd test/src && go mod tidy"
33+
- "cd test/src && go test -v -timeout 60m"
3234

33-
- name: test clean
34-
description: Clean tests
35-
steps:
36-
- "make -C test/src clean"
37-
- "rm -rf examples/*/.terraform examples/*/.terraform.lock.hcl"
35+
- name: "clean"
36+
description: Clean tests
37+
steps:
38+
- "make -C test/src clean"
39+
- "rm -rf examples/*/.terraform examples/*/.terraform.lock.hcl"

0 commit comments

Comments
 (0)