Merge pull request #197 from eReuse/ci-enable-pip-cache

Enable pip cache on GitHub Actions
This commit is contained in:
Santiago L 2022-02-07 14:54:10 +01:00 committed by GitHub
commit 31728613a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -37,9 +37,10 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |