Skip to content

Commit a3e96f8

Browse files
authored
Improve GitHub workflow job names for better clarity (#633)
- Change Julia job names from 'Test (os, julia version)' to 'Test Julia (version, os)' - Change Python job names from 'Test (os, python version)' to 'Test Python (version, os)' - Simplify Python version matrix from '>=3.8' to '3' for cleaner job names - Update nightly test job names similarly This makes it easier to quickly identify which language and version is being tested. Co-authored-by: Christopher Doris <github.com/cjdoris>
1 parent 752534b commit a3e96f8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/tests-nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
tests:
13-
name: Test (${{ matrix.os }}-${{ matrix.arch }}, julia ${{ matrix.jlversion }})
13+
name: Test Julia (${{ matrix.jlversion }}, ${{ matrix.os }}-${{ matrix.arch }})
1414
runs-on: ${{ matrix.os }}
1515
strategy:
1616
fail-fast: false

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
julia:
15-
name: Test (${{ matrix.os }}, julia ${{ matrix.jlversion }})
15+
name: Test Julia (${{ matrix.jlversion }}, ${{ matrix.os }})
1616
runs-on: ${{ matrix.os }}
1717
strategy:
1818
fail-fast: false
@@ -50,13 +50,13 @@ jobs:
5050
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
5151

5252
python:
53-
name: Test (${{ matrix.os }}, python ${{ matrix.pyversion }})
53+
name: Test Python (${{ matrix.pyversion }}, ${{ matrix.os }})
5454
runs-on: ${{ matrix.os }}
5555
strategy:
5656
fail-fast: false
5757
matrix:
5858
os: [ubuntu-latest, windows-latest, macos-latest]
59-
pyversion: [">=3.8", "3.8"]
59+
pyversion: ["3", "3.8"]
6060

6161
steps:
6262
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)