Skip to content

Commit eeaa2c9

Browse files
committed
Acceptance test: update repo 4
1 parent ebb8c21 commit eeaa2c9

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/power-acceptance-test.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
uses: actions/setup-go@v3
2222
with:
2323
go-version: '1.22'
24-
24+
2525
# Step 3: Cache Go modules
2626
- name: Cache Go modules
2727
uses: actions/cache@v3
@@ -63,6 +63,7 @@ jobs:
6363
fi
6464
6565
if [["$file" == *_test.go ]]; then
66+
echo "Adding $file to the map"
6667
modified_test_files_map["$file"]=1
6768
else
6869
@@ -76,6 +77,11 @@ jobs:
7677
fi
7778
done
7879
80+
echo "Keys and Values of modified_test_files_map:"
81+
for key in "${!modified_test_files_map[@]}"; do
82+
echo "$key => ${modified_test_files_map[$key]}"
83+
done
84+
7985
# If there are modified test files, run the tests
8086
if [ ${#modified_test_files_map[@]} -gt 0 ]; then
8187
modified_test_files=$(echo "${!modified_test_files_map[@]}")

0 commit comments

Comments
 (0)