Skip to content

Commit 73a5db7

Browse files
d-burgclaude
andcommitted
CI - BUG FIX - Merge the duplicated env block in the test job
The multi-threaded matrix leg added JULIA_NUM_THREADS in a second `env:` key alongside the existing DEPOT_PATHS one, so the test job carried a duplicate YAML mapping key. GitHub rejects the whole workflow file on that, which is why no test run reported on this branch and the required Tests context could never be satisfied. Had it parsed, the later block would have won and dropped JULIA_NUM_THREADS entirely, leaving the new leg single-threaded. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
1 parent aeb27b5 commit 73a5db7

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

.github/workflows/test.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,6 @@ jobs:
9595
if: needs.changes.outputs.julia == 'true'
9696
runs-on: ${{ matrix.os }}
9797
timeout-minutes: 90
98-
env:
99-
JULIA_NUM_THREADS: ${{ matrix.threads }}
10098
strategy:
10199
fail-fast: false
102100
matrix:
@@ -117,6 +115,7 @@ jobs:
117115
threads: '4'
118116

119117
env:
118+
JULIA_NUM_THREADS: ${{ matrix.threads }}
120119
DEPOT_PATHS: |
121120
~/.julia/artifacts
122121
~/.julia/packages

0 commit comments

Comments
 (0)