From 3f7e8d57872edfaee1a6c1ae45d58855a8a73b05 Mon Sep 17 00:00:00 2001 From: alessandrofelder Date: Mon, 30 Oct 2023 11:44:00 +0000 Subject: [PATCH] try to install pyside2 via conda --- .github/workflows/test_and_deploy.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index f378b9d0..fe43dc22 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -32,6 +32,19 @@ jobs: python-version: "3.11" steps: + - name: Setup conda on Windows + if: runner.os == 'Windows' + uses: s-weigand/setup-conda@v1 + with: + update-conda: true + python-version: ${{ matrix.python-version }} + conda-channels: conda-forge + + - name: Install Windows-specific conda-forge dependencies + if: runner.os == 'Windows' + run: conda install -c conda-forge pyside2 + + # Run tests - uses: neuroinformatics-unit/actions/test@v2 with: