Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan8be committed Apr 30, 2024
1 parent 2b11fe0 commit 174dc1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
channels: conda-forge,defaults

- name: Install dependencies on macOS
if startsWith(matrix.os, 'macos')
if: startsWith(matrix.os, 'macos')
run: |
python3 -m venv ${PYTHON_VENV_ROOT}
source ${PYTHON_VENV_ROOT}/bin/activate
Expand All @@ -37,7 +37,7 @@ jobs:
python3 -m pip install -e .
- name: Install dependencies
if startsWith(matrix.os, 'ubuntu') || startsWith(matrix.os, 'windows')
if: startsWith(matrix.os, 'ubuntu') || startsWith(matrix.os, 'windows')
run: |
python --version
python3 -m pip install --upgrade pip
Expand Down

0 comments on commit 174dc1f

Please sign in to comment.