Skip to content

Commit c83d77e

Browse files
committed
maybe improve job names
1 parent 70cdb66 commit c83d77e

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,18 @@ on:
1010

1111
jobs:
1212
test:
13-
runs-on: ${{ matrix.os }}
13+
name: ${{ matrix.os.name }} ${{ matrix.python.name }} ${{ default }}
14+
runs-on: ${{ matrix.os.runs-on }}
1415
strategy:
1516
fail-fast: false
1617
matrix:
1718
os:
18-
- ubuntu-latest
19-
- windows-latest
20-
- macos-latest
19+
- name: Linux
20+
runs-on: ubuntu-latest
21+
- name: Windows
22+
runs-on: windows-latest
23+
- name: macOS
24+
runs-on: macos-latest
2125
python:
2226
- name: CPython 2.7
2327
tox: py27

0 commit comments

Comments
 (0)