File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff 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
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
You can’t perform that action at this time.
0 commit comments