Skip to content

Commit

Permalink
Fix missing conda installation
Browse files Browse the repository at this point in the history
  • Loading branch information
birgits committed Jan 10, 2024
1 parent 64cb2d3 commit ea7e8a6
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/tests-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,17 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies (Linux)
if: runner.os == 'Linux'
- name: Set up Conda
if: runner.os == 'Windows'
uses: conda-incubator/setup-miniconda@v2
with:
miniconda-version: "latest"
python-version: ${{ matrix.python-version }}
activate-environment: testenv

- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel setuptools
pip install .[dev]
- name: Install dependencies (Windows)
if: runner.os == 'Windows'
run:
conda create -n testenv python=${{ matrix.python }}
conda activate testenv
python -m pip install .[dev]
- name: Run tests
Expand Down

0 comments on commit ea7e8a6

Please sign in to comment.