We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 139b556 commit 8ef0921Copy full SHA for 8ef0921
1 file changed
.github/workflows/run-long-tests.yml
@@ -100,8 +100,18 @@ jobs:
100
--no-daemon
101
'-PtestDataRevision=${{ env.TEST_DATA_REVISION }}'
102
103
+ show_info:
104
+ needs: [setup]
105
+ runs-on: ubuntu-latest
106
+ steps:
107
+ - name: Show test info
108
+ run: echo "${{ fromJSON(needs.setup.outputs.matrix-tests) }}"
109
+
110
+ - name: Show chunk info
111
+ run: echo "${{ fromJSON(needs.setup.outputs.matrix-chunks) }}"
112
113
run_tests:
- needs: [setup, prepare_test_data]
114
+ needs: [setup, show_info, prepare_test_data]
115
continue-on-error: true
116
strategy:
117
matrix:
0 commit comments