Skip to content

Commit 34d2b05

Browse files
authored
Update build.yml
1 parent 70cc850 commit 34d2b05

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,26 @@ jobs:
1515
python-version: [3.4, 3.5, 3.6.8]
1616

1717
steps:
18-
- uses: actions/checkout@v2
18+
- uses: actions/checkout@v1
1919
- name: Set up Python ${{ matrix.python-version }}
2020
uses: actions/setup-python@v2
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323
- name: Install dependencies
2424
run: |
25-
pip install --upgrade pip
25+
python -m pip install --upgrade pip
26+
python -m pip install sphinx
2627
pip install virtualenv==20.0.1
27-
pip install tox tox-gh-actions
28+
- name: Install tox
29+
if: python-version != 3.4
30+
run: pip install tox tox-gh-actions
2831
- name: Test with tox
32+
if: python-version != 3.4
2933
run: |
3034
tox
3135
pip install -e .
3236
- name: Before deploy
3337
run: |
3438
pip install -e .
3539
pip install --upgrade setuptools
36-
make docs
40+
make docs

0 commit comments

Comments
 (0)