Add pip cache

Try to be a good citizen and use caches instead of hitting the repos all the time
This commit is contained in:
Mark Schmitt 2021-01-07 08:44:05 +01:00
parent 460d202eb0
commit 1238d8b994

View File

@ -21,6 +21,15 @@ jobs:
with: with:
default: "${{ matrix.python }}" default: "${{ matrix.python }}"
command: "pip install -U pip" command: "pip install -U pip"
- name: Get pip cache dir
id: pip-cache
run: |
echo "::set-output name=dir::$(pip cache dir)"
- name: Persistent Github pip cache
uses: actions/cache@v2
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip${{ matrix.python }}
- name: Tests - name: Tests
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}