From e05ef3fef37846316488f0360577a7a5f485ea6f Mon Sep 17 00:00:00 2001 From: Hugo Date: Tue, 19 Nov 2019 11:55:49 +0200 Subject: [PATCH] Include architecture in cache key --- .github/workflows/test-windows.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-windows.yml b/.github/workflows/test-windows.yml index 61dab9d6b..aa4761f68 100644 --- a/.github/workflows/test-windows.yml +++ b/.github/workflows/test-windows.yml @@ -36,8 +36,9 @@ jobs: with: path: ~\AppData\Local\pip\Cache key: - ${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('**/.github/workflows/test-windows.yml') }} + ${{ runner.os }}-${{ matrix.python-version }}-${{ matrix.architecture }}-${{ hashFiles('**/.github/workflows/test-windows.yml') }} restore-keys: | + ${{ runner.os }}-${{ matrix.python-version }}-${{ matrix.architecture }}- ${{ runner.os }}-${{ matrix.python-version }}- - name: Install PyPy