Skip to content

Commit 6f55876

Browse files
committed
Improve CI job names
1 parent 7af56ed commit 6f55876

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
py: "3.9"
1515

1616
runs-on: ubuntu-latest
17-
name: "Run '${{ matrix.toxenv }}' on python ${{ matrix.py }}"
17+
name: "'${{ matrix.toxenv }}' on py${{ matrix.py }}"
1818
steps:
1919
- uses: actions/checkout@v4
2020

@@ -61,10 +61,10 @@ jobs:
6161
ci-test-matrix:
6262
strategy:
6363
matrix:
64-
os: [ubuntu-latest, windows-latest, macos-latest]
64+
os: [ubuntu, windows, macos]
6565
py: ['3.9', '3.10', '3.11', '3.12', '3.13']
66-
name: "Run tests on ${{ matrix.os }}, py${{ matrix.py }}"
67-
runs-on: ${{ matrix.os }}
66+
name: "Test on ${{ matrix.os }}, py${{ matrix.py }}"
67+
runs-on: "${{ matrix.os }}-latest"
6868
steps:
6969
- uses: actions/checkout@v4
7070

0 commit comments

Comments
 (0)