From 0ab991c1ef14f621f9b4973d9083c33d6c77d704 Mon Sep 17 00:00:00 2001 From: ChrisRackauckas-Claude Date: Sun, 14 Jun 2026 04:12:09 -0400 Subject: [PATCH 1/2] sublibrary-ci: include Julia version in each sub-job name Co-Authored-By: Chris Rackauckas Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/sublibrary-project-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sublibrary-project-tests.yml b/.github/workflows/sublibrary-project-tests.yml index cfaad20..47b28d2 100644 --- a/.github/workflows/sublibrary-project-tests.yml +++ b/.github/workflows/sublibrary-project-tests.yml @@ -112,7 +112,7 @@ jobs: fail-fast: false matrix: include: ${{ fromJson(needs.detect.outputs.matrix) }} - name: "${{ matrix.project }}${{ matrix.group != 'Core' && format(' [{0}]', matrix.group) || '' }} (julia ${{ matrix.version }})" + name: "${{ matrix.project }}${{ matrix.group != 'Core' && format(' [{0}]', matrix.group) || '' }} / Julia ${{ matrix.version }}" uses: "SciML/.github/.github/workflows/tests.yml@v1" with: project: "${{ matrix.project }}" From 812a96c2258cfc41cb86fd4e44ca579ca1fff17c Mon Sep 17 00:00:00 2001 From: ChrisRackauckas-Claude Date: Sun, 14 Jun 2026 04:18:06 -0400 Subject: [PATCH 2/2] tests.yml: include Julia version in the test job name (the leaf name shown in checks) Co-Authored-By: Chris Rackauckas Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 00ce11f..ecad14c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -109,7 +109,7 @@ on: jobs: tests: - name: "Tests${{ inputs.group != '' && format(' - {0}', inputs.group) || '' }}" + name: "Tests${{ inputs.group != '' && format(' - {0}', inputs.group) || '' }} (Julia ${{ inputs.julia-version }})" continue-on-error: ${{ inputs.continue-on-error || inputs.julia-version == 'nightly' }} runs-on: ${{ inputs.runner != '' && fromJson(inputs.runner) || (inputs.self-hosted && 'self-hosted' || inputs.os) }} container: ${{ inputs.container }}