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 30d3b71 commit a28e680Copy full SHA for a28e680
.github/workflows/ci.yml
@@ -16,14 +16,16 @@ jobs:
16
matrix:
17
os:
18
- ubuntu-latest
19
- abc:
20
- - name: CPython 3.6
21
- toxenv: py36,report,codecov
22
- - name: CPython 3.7
23
- toxenv: py37,report,codecov
+ toxenv:
+ - py36,report,codecov
+ - py37,report,codecov
+ - py38,report,codecov
+ - pypy3,report,codecov
24
+ - doc
25
+ - check
26
steps:
27
- uses: actions/checkout@v1
28
- run: |
29
eval "$(pyenv init -)"
30
pip install tox
- tox -v -e "${{ matrix.abc.toxenv }}"
31
+ tox -v -e "${{ matrix.toxenv }}"
0 commit comments