We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3934950 commit aa1fd30Copy full SHA for aa1fd30
.github/workflows/continuous-integration.yml
@@ -25,7 +25,11 @@ jobs:
25
# This provides a dedicated "check" to asynchronously test all integration tests within the tests/ directory
26
# The project name from the tests/ directory is then re-used within the "qa" job to run the generated "container"
27
# within that directory.
28
- run: cd tests; echo "matrix=[\"$(ls -d * | tr '\n' ' ' | sed 's/ $//' | sed 's/ /\",\"/g')\"]" >> $GITHUB_OUTPUT
+ run: |
29
+ cd tests;
30
+ echo 'matrix<<EOF' >> $GITHUB_OUTPUT
31
+ echo "[\"$(ls -d * | tr '\n' ' ' | sed 's/ $//' | sed 's/ /\",\"/g')\"]" >> $GITHUB_OUTPUT
32
+ echo 'EOF' >> $GITHUB_OUTPUT
33
34
container:
35
name: Prepare docker container
0 commit comments