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 c044b2a commit 630dea8Copy full SHA for 630dea8
.github/workflows/parallel_dir.yml
@@ -44,9 +44,8 @@ jobs:
44
for line in lines:
45
parts = line.strip().partition("::")
46
test_dirs.add(str(Path(parts[0]).parent))
47
- # test_dirs = { "test_dirs": sorted(list(test_dirs)) }
48
test_dirs = sorted(list(test_dirs))
49
- print(test_dirs)
+ print(f"::notice ::Test matrix: {test_dirs}")
50
with open(environ["GITHUB_OUTPUT"], "a", encoding="utf-8") as f:
51
print(f"TEST_DIRS={test_dirs}", file=f)
52
0 commit comments