Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,13 @@ jobs:
depwarn: "${{ inputs.julia-runtest-depwarn }}"
coverage: "${{ inputs.coverage }}"
prefix: "${{ inputs.test-prefix }}"
# On LTS, accept that newer dep versions may not be reachable —
# let Pkg resolve to whatever satisfies both the workspace compat
# and transitive constraints. `auto` (the default) would otherwise
# treat bot-authored bump PRs as failing whenever LTS can't reach
# the upper-end compat, even when we are fine with the bump being
# aspirational on LTS while working on current Julia.
force_latest_compatible_version: "${{ inputs.julia-version == 'lts' && 'false' || 'auto' }}"
env:
GROUP: "${{ inputs.group }}"
JULIA_NUM_THREADS: "${{ inputs.nthreads }}"
Expand Down