Skip to content

Commit 61648f4

Browse files
committed
Add parallel testing demo
1 parent 8c09705 commit 61648f4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/parallel.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Collect
1212
runs-on: ubuntu-latest
1313
outputs:
14-
TEST_MATRIX: "${{ steps.matrix.outputs.TEST_DIRS }}"
14+
TEST_MATRIX: "${{ steps.matrix.outputs.TEST_MATRIX }}"
1515
FOO: "${{ steps.foo.outputs.FOO }}"
1616
BAR: "${{ steps.bar.outputs.BAR }}"
1717

@@ -53,8 +53,8 @@ jobs:
5353
print(test_dirs)
5454
print(environ["GITHUB_OUTPUT"])
5555
with open(environ["GITHUB_OUTPUT"], "a", encoding="utf-8") as f:
56-
print(f"TEST_MATRIX='{test_dirs}'")
57-
print(f"TEST_MATRIX='{test_dirs}'", file=f)
56+
print(f'TEST_MATRIX="{test_dirs}"')
57+
print(f'TEST_MATRIX="{test_dirs}"', file=f)
5858
5959
- id: bar
6060
run: echo 'BAR=456' >> "${GITHUB_OUTPUT}"

0 commit comments

Comments
 (0)