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 dce290a commit 7a703e6Copy full SHA for 7a703e6
.github/workflows/ci.yml
@@ -35,14 +35,12 @@ jobs:
35
uses: actions/cache@v2
36
with:
37
path: ${{ env.TEMP }}\chocolatey
38
- key: ${{ runner.os }}-chocolatey
39
- restore-keys: |
40
- ${{ runner.os }}-chocolatey
+ key: ${{ runner.os }}-chocolatey-${{ matrix.python == 'pypy3' && '32' || '64' }}
41
42
- name: Install Mono
43
if: runner.os == 'Windows'
44
run: |
45
- choco install -y mono
+ choco install -y mono ${{ matrix.python == 'pypy3' && '--x86' || '' }}
46
47
- name: Test with pytest
48
0 commit comments