We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bd411d commit 562ceedCopy full SHA for 562ceed
.github/workflows/python-package.yml
@@ -19,14 +19,18 @@ jobs:
19
uses: actions/setup-python@v2
20
with:
21
python-version: ${{ matrix.python-version }}
22
-
+ - uses: actions/cache@v2
23
+ with:
24
+ path: ~/.cache/pip
25
+ key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }}
26
+ restore-keys: |
27
+ ${{ runner.os }}-pip-
28
- name: Install dependencies
29
run: |
30
sudo apt-get update -qq
31
sudo apt-get install -qq swig python-dev libxml2-dev libxmlsec1-dev
32
make install-req
33
make install-test
34
- name: Test
35
36
make pytest
0 commit comments