diff options
| author | Alexandre Flament <alex@al-f.net> | 2020-12-20 09:51:24 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-20 09:51:24 +0100 |
| commit | 59217bb5bed86926b2bbd84f406ed022b0762c6e (patch) | |
| tree | d65eb74cbe46be6813afdf9907de5941cbbb9a4d /.github/workflows | |
| parent | 04447f8c1a32aa2d1a2209d0a120ce04435c1346 (diff) | |
| parent | 3f8ebf70b193f4391a01d7412324a10e4faa56a2 (diff) | |
Merge pull request #2397 from dalf/update-ci
updates for Python 3.9 / update CI
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/integration.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 1ba077ad3..cff8854b9 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -22,7 +22,14 @@ jobs: with: python-version: ${{ matrix.python-version }} architecture: 'x64' + - name: Cache Python dependencies + id: cache-python + uses: actions/cache@v2 + with: + path: ./local + key: python-${{ matrix.os }}-${{ matrix.python-version }}-${{ hashFiles('requirements*.txt', 'setup.py') }} - name: Install Python dependencies + if: steps.cache-python.outputs.cache-hit != 'true' run: | make V=1 install make V=1 gecko.driver |