tests/sublibrary-ci: show Julia version in test job names#91
Merged
ChrisRackauckas merged 2 commits intoJun 14, 2026
Merged
Conversation
Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com> Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
…shown in checks) Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com> Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
In the reusable sublibrary CI workflow (
.github/workflows/sublibrary-project-tests.yml, thelib/*project-model sublibrary tests), reformat thetestjob'sname:so the per-job display name surfaces the Julia version in a clearer, distinguishing form.The job name already interpolated the version as a parenthesized lowercase suffix (
(julia ${{ matrix.version }})). This changes it to a/ Julia <version>form so the GitHub checks list reads e.g.lib/OrdinaryDiffEqTsit5 / Julia 1.10vslib/OrdinaryDiffEqTsit5 / Julia 1, instead of distinct-version jobs being hard to tell apart.Before / After (the only line changed)
Before:
After:
Details
version, confirmed against both the workflow (matrix.versionis also fed tojulia-version:) and the matrix producerscripts/compute_affected_sublibraries.jl(--projects-matrixemits{"project":...,"group":...,"version":...,...}).name:string changed — no functional/behavioral change.actionlintclean on the edited file.Not touched
sublibrary-downgrade.yml: itstestjob has noname:and its matrix only has aprojectaxis — the Julia version is a singleinputs.julia-versionper run, not a per-job matrix distinguisher, so it is not the same multi-version-matrix situation. Left as-is.tests.yml/grouped-tests.yml: out of scope.NOTE:
v1must be retagged after merge for@v1callers to pick this up.Ignore until reviewed by @ChrisRackauckas.
🤖 Generated with Claude Code
Real fix added (tests.yml leaf job name)
For reusable-workflow calls, GitHub displays the called workflow's job name in the checks list, overriding the caller's richer name. So the visible "Tests - " entries come from the leaf reusable
SciML/.github/.github/workflows/tests.yml@v1testsjob name — not from the callers (grouped-tests.yml/sublibrary-project-tests.yml). Adding the version only to the callers has no visible effect.This PR now also edits
.github/workflows/tests.ymlto append the Julia version to that leaf job name:Before:
After:
inputs.julia-versionis a realon.workflow_call.inputsinput oftests.yml(default"1", type string). The checks list will now read e.g.Tests - Extended (Julia 1.10)/(Julia 1)/(Julia pre)distinctly.actionlintclean.The
sublibrary-project-tests.ymlcaller-name change in this PR is cosmetic (it is the caller job name, not what GitHub shows for reusable calls); kept as-is.