From 62568c4aec10c6f6e8192f639feded5baea9a0dc Mon Sep 17 00:00:00 2001 From: mayeut Date: Sat, 6 Mar 2021 12:18:36 +0100 Subject: [PATCH] Setup cache on GHA --- .github/workflows/test.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 44766a4b..b86ecd4d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,6 +21,13 @@ jobs: - name: Checkout uses: actions/checkout@v2 + - name: Setup cache + uses: actions/cache@v2 + with: + path: ~/.cache/auditwheel_tests + key: python${{ matrix.python }}-${{ hashFiles('**/test_manylinux.py') }} + restore-keys: python${{ matrix.python }}- + - name: Install CPython ${{ matrix.python }} uses: actions/setup-python@v2 with: