Skip to content

Commit

Permalink
Attempt fix at CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jadchaar committed Jun 12, 2020
1 parent 22acd93 commit 35c0f84
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/continuous_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ jobs:
with:
python-version: "3.8"
- name: Install dependencies
run: pip install -U tox
run: |
pip install -U pip setuptools wheel
pip install tox
- name: Linting code
run: tox -e lint
- name: Linting docs
Expand All @@ -40,7 +42,9 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install -U tox tox-gh-actions
run: |
pip install -U pip setuptools wheel
pip install -U tox tox-gh-actions
- name: Test with tox
run: tox
- name: Upload coverage to Codecov
Expand All @@ -61,7 +65,9 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install -U tox tox-gh-actions
run: |
pip install -U pip setuptools wheel
pip install -U tox tox-gh-actions
- name: Test with tox
run: tox
- name: Upload coverage to Codecov
Expand All @@ -82,7 +88,9 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install -U tox tox-gh-actions
run: |
pip install -U pip setuptools wheel
pip install -U tox tox-gh-actions
- name: Test with tox
run: tox
- name: Upload coverage to Codecov
Expand Down

0 comments on commit 35c0f84

Please sign in to comment.