We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01b847b commit a2c3850Copy full SHA for a2c3850
2 files changed
.github/workflows/build.yml
@@ -12,7 +12,7 @@ jobs:
12
strategy:
13
fail-fast: false
14
matrix:
15
- python-version: [3.4, 3.5, 3.6.8]
+ python-version: [3.4, 3.5, 3.6]
16
17
steps:
18
- uses: actions/checkout@v2
@@ -22,8 +22,9 @@ jobs:
22
python-version: ${{ matrix.python-version }}
23
- name: Install dependencies
24
run: |
25
+ pip install --upgrade pip
26
pip install virtualenv==20.0.1
- pip install tox
27
+ pip install tox tox-gh-actions
28
- name: Test with tox
29
30
tox
tox.ini
@@ -15,10 +15,11 @@ deps =
flake8-quotes==0.14.0
usedevelop=True
-[tox:travis]
19
-3.4 = py34
20
-3.5 = py35
21
-3.6.8 = py36
+[gh-actions]
+python =
+ 3.4: py34
+ 3.5: py35
+ 3.6: py36
[flake8]
max-complexity = 5
0 commit comments