Skip to content
This repository was archived by the owner on Jul 5, 2023. It is now read-only.

Commit 49b0404

Browse files
committed
For both x86 and x64
1 parent 493d528 commit 49b0404

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
python-version: ["3.5", "3.6", "3.7", "3.8", "3.9"]
15+
architecture: ["x86", "x64"]
1516
os: [windows-latest]
1617

1718
steps:
@@ -21,6 +22,7 @@ jobs:
2122
uses: actions/setup-python@v2
2223
with:
2324
python-version: ${{ matrix.python-version }}
25+
architecture: ${{ matrix.architecture }}
2426

2527
- name: Get pip cache dir
2628
id: pip-cache
@@ -32,9 +34,9 @@ jobs:
3234
with:
3335
path: ${{ steps.pip-cache.outputs.dir }}
3436
key:
35-
${{ matrix.os }}-${{ matrix.python-version }}-${{ hashFiles('**/setup.py') }}
37+
${{ matrix.os }}-${{ matrix.architecture }}-${{ matrix.python-version }}-${{ hashFiles('**/setup.py') }}
3638
restore-keys: |
37-
${{ matrix.os }}-${{ matrix.python-version }}-
39+
${{ matrix.os }}-${{ matrix.architecture }}-${{ matrix.python-version }}-
3840
3941
- name: Install dependencies
4042
run: |

0 commit comments

Comments
 (0)