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
1 changed files with 2 additions and 1 deletions

View File

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