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 c83d77e commit 8cc40e9Copy full SHA for 8cc40e9
.github/workflows/ci.yml
@@ -10,7 +10,7 @@ on:
10
11
jobs:
12
test:
13
- name: ${{ matrix.os.name }} ${{ matrix.python.name }} ${{ default }}
+ name: ${{ matrix.os.name }} ${{ matrix.python.name }} ${{ matrix.reactor.name }}
14
runs-on: ${{ matrix.os.runs-on }}
15
strategy:
16
fail-fast: false
@@ -36,9 +36,12 @@ jobs:
36
tox: py37
37
action: 3.7
38
reactor:
39
- - default
40
- - qt5
41
- - asyncio
+ - name: default
+ tox: default
+ - name: Qt5
42
+ tox: qt5
43
+ - name: asyncio
44
+ tox: asyncio
45
exclude:
46
- python:
47
tox: py27
@@ -66,7 +69,7 @@ jobs:
66
69
run: |
67
70
import sys
68
71
- toxenv = '${{ matrix.python.tox }}-${{ matrix.reactor }}reactor'
72
+ toxenv = '${{ matrix.python.tox }}-${{ matrix.reactor.tox }}reactor'
73
74
if sys.platform == 'win32':
75
toxenv = 'win-' + toxenv
0 commit comments