Skip to content

Commit 9e8321e

Browse files
authored
Setup cache on GHA (#294)
1 parent 6a70638 commit 9e8321e

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,13 @@ jobs:
2121
- name: Checkout
2222
uses: actions/checkout@v2
2323

24+
- name: Setup cache
25+
uses: actions/cache@v2
26+
with:
27+
path: ~/.cache/auditwheel_tests
28+
key: python${{ matrix.python }}-${{ hashFiles('**/test_manylinux.py') }}
29+
restore-keys: python${{ matrix.python }}-
30+
2431
- name: Install CPython ${{ matrix.python }}
2532
uses: actions/setup-python@v2
2633
with:

0 commit comments

Comments
 (0)