Skip to content

Commit

Permalink
changing python setup for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
JoOkuma committed Mar 1, 2024
1 parent c7ac8fc commit 61875b7
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/test_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,16 @@ jobs:

- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python }} 64-bit for Windows
if: runner.os == 'Windows'
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
architecture: 'x64'
cache: 'pip'

- name: Set up Python ${{ matrix.python }}
if: runner.os != 'Windows'
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
Expand Down

0 comments on commit 61875b7

Please sign in to comment.