Skip to content

Commit 9397f28

Browse files
committed
ci: update test env
1 parent 38c4e54 commit 9397f28

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/integration_tests.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@ jobs:
1919
steps:
2020
- name: Checkout code
2121
uses: actions/checkout@v4
22-
22+
2323
- name: Discover testcases
2424
id: discover
2525
run: |
2626
# Find all testcase folders (excluding common folders like README, etc.)
2727
testcase_dirs=$(find testcases -maxdepth 1 -type d -name "*-*" | sed 's|testcases/||' | sort)
28-
28+
2929
echo "Found testcase directories:"
3030
echo "$testcase_dirs"
31-
31+
3232
# Convert to JSON array for matrix
3333
testcases_json=$(echo "$testcase_dirs" | jq -R -s -c 'split("\n")[:-1]')
3434
echo "testcases=$testcases_json" >> $GITHUB_OUTPUT
@@ -42,10 +42,10 @@ jobs:
4242
fail-fast: false
4343
matrix:
4444
testcase: ${{ fromJson(needs.discover-testcases.outputs.testcases) }}
45-
environment: [alpha]
46-
45+
environment: [alpha, cloud]
46+
4747
name: "${{ matrix.testcase }} / ${{ matrix.environment }}"
48-
48+
4949
steps:
5050
- name: Checkout code
5151
uses: actions/checkout@v4
@@ -68,6 +68,6 @@ jobs:
6868
echo "Running testcase: ${{ matrix.testcase }}"
6969
echo "Environment: ${{ matrix.environment }}"
7070
echo "Working directory: $(pwd)"
71-
71+
7272
# Execute the testcase run script directly
73-
bash run.sh
73+
bash run.sh

0 commit comments

Comments
 (0)