Skip to content

Commit c916742

Browse files
author
Kerkesni
committed
fixup! add coverage to functional tests
1 parent 09f9398 commit c916742

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/actions/cleanup-and-coverage/action.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,15 @@ runs:
2020
- name: Stop CI services
2121
run: |
2222
PROFILES=""
23-
for profile in ${{ inputs.profiles }}; do
23+
# Read from environment variable to avoid syntax issues
24+
# related to gha templating
25+
for profile in $INPUT_PROFILES; do
2426
PROFILES="${PROFILES} --profile ${profile}"
2527
done
2628
docker compose ${PROFILES} down
2729
shell: bash
30+
env:
31+
INPUT_PROFILES: ${{ inputs.profiles }}
2832
working-directory: .github/docker
2933

3034
- name: Upload coverage reports to Codecov

0 commit comments

Comments
 (0)