Skip to content

Commit

Permalink
Python setup runs before conda on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
IgorTatarnikov committed Nov 29, 2023
1 parent dbd3e1b commit 67a456b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/test_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,17 @@ jobs:
python-version: ${{ matrix.python-version }}

# Windows custom steps
- name: Setup Python ${{ matrix.python-version }} for Windows
if: runner.os == 'Windows'
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Setup Conda on Windows
if: runner.os == 'Windows'
uses: s-weigand/setup-conda@v1
with:
python-version: ${{ matrix.python-version }}
activate-conda: false

- name: Change Conda solver and install Pyside2
if: runner.os == 'Windows'
Expand Down

0 comments on commit 67a456b

Please sign in to comment.