We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70cdb66 commit c83d77eCopy full SHA for c83d77e
.github/workflows/ci.yml
@@ -10,14 +10,18 @@ on:
10
11
jobs:
12
test:
13
- runs-on: ${{ matrix.os }}
+ name: ${{ matrix.os.name }} ${{ matrix.python.name }} ${{ default }}
14
+ runs-on: ${{ matrix.os.runs-on }}
15
strategy:
16
fail-fast: false
17
matrix:
18
os:
- - ubuntu-latest
19
- - windows-latest
20
- - macos-latest
+ - name: Linux
+ runs-on: ubuntu-latest
21
+ - name: Windows
22
+ runs-on: windows-latest
23
+ - name: macOS
24
+ runs-on: macos-latest
25
python:
26
- name: CPython 2.7
27
tox: py27
0 commit comments