Skip to content

Commit 036c9c9

Browse files
committed
CI: improve solution test
1 parent 3281ad7 commit 036c9c9

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/e2e.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
paths:
99
- '.github/**'
1010
- 'quickstarts/**'
11-
- 'tech-solution/**'
11+
- 'solution/**'
1212

1313
jobs:
1414
terraform-fmt:
@@ -20,7 +20,7 @@ jobs:
2020
id: fmt
2121
run: |
2222
terraform -chdir=quickstarts fmt -check -recursive
23-
terraform -chdir=tech-solution fmt -check -recursive
23+
terraform -chdir=solution fmt -check -recursive
2424
2525
2626
terraform-validate:
@@ -36,7 +36,7 @@ jobs:
3636
separator: ","
3737
files: |
3838
quickstarts/*
39-
tech-solution/*
39+
solution/*
4040
dir_names_max_depth: 3
4141
- name: Terraform validate
4242
run: |
@@ -82,7 +82,7 @@ jobs:
8282
separator: ","
8383
files: |
8484
quickstarts/*
85-
tech-solution/*
85+
solution/*
8686
dir_names_max_depth: 3
8787
- name: set id
8888
id: set-job-id

scripts/doc-generate.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
if [ $# -eq 0 ];then
44
exampleDir=$(find ./quickstarts -maxdepth 2 -mindepth 2 -type d)
5-
techSolutionDir=$(find ./tech-solution -maxdepth 1 -mindepth 1 -type d)
5+
techSolutionDir=$(find ./solution -maxdepth 2 -mindepth 2 -type d)
66
all_dirs="$exampleDir $techSolutionDir"
77
# echo $all_dirs
88
for file in $all_dirs;do

0 commit comments

Comments
 (0)