summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorAlexandre Flament <alex@al-f.net>2020-12-20 09:51:24 +0100
committerGitHub <noreply@github.com>2020-12-20 09:51:24 +0100
commit59217bb5bed86926b2bbd84f406ed022b0762c6e (patch)
treed65eb74cbe46be6813afdf9907de5941cbbb9a4d /.github/workflows
parent04447f8c1a32aa2d1a2209d0a120ce04435c1346 (diff)
parent3f8ebf70b193f4391a01d7412324a10e4faa56a2 (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.yml7
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