Skip to content

Commit

Permalink
ci: specify architecture for Python (Windows only)
Browse files Browse the repository at this point in the history
  • Loading branch information
jborbely committed May 6, 2024
1 parent f50c2dd commit db21abb
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,17 @@ jobs:
run: mono --version
- name: Java version
run: java -version
- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python ${{ matrix.python-version }} (Windows)
if: ${{ matrix.os == 'windows-latest' }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: ${{ matrix.architecture }}
- name: Set up Python ${{ matrix.python-version }} (non Windows)
if: ${{ matrix.os != 'windows-latest' }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip, setuptools and wheel
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit db21abb

Please sign in to comment.