Skip to content

Commit

Permalink
Merge 58ccdd4 into 758c09c
Browse files Browse the repository at this point in the history
  • Loading branch information
rvlb committed May 4, 2021
2 parents 758c09c + 58ccdd4 commit 12cf904
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,19 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
#- name: Cache installed requirements
# uses: actions/cache@v2
# with:
# path: ${{ env.pythonLocation }}
# key: ${{ matrix.os }}-${{ env.pythonLocation }}-${{ hashFiles('**/requirements.txt', '**/requirements-dev.txt') }}
- name: Cache installed requirements
uses: actions/cache@v2
with:
# Cache the Python package environment, excluding pip and setuptools installed by setup-python
path: |
~/.cache/pip
${{ env.pythonLocation }}/bin/*
${{ env.pythonLocation }}/include
${{ env.pythonLocation }}/lib/python*/site-packages/*
!${{ env.pythonLocation }}/bin/pip*
!${{ env.pythonLocation }}/lib/python*/site-packages/pip*
!${{ env.pythonLocation }}/lib/python*/site-packages/setuptools*
key: ${{ matrix.os }}-${{ env.pythonLocation }}-${{ hashFiles('**/requirements.txt', '**/requirements-dev.txt') }}
- name: Install tox, tox-gh-actions and coveralls
run: pip install tox==3.21.3 tox-gh-actions==2.4.0 coveralls==3.0.0
- name: Lint using flake8
Expand Down

0 comments on commit 12cf904

Please sign in to comment.