Enable pip cache on GitHub Actions

This commit is contained in:
Santiago L 2022-02-07 13:08:21 +01:00
parent 2c2e93eb3b
commit 0b075d1277

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: |