Skip to content

Commit

Permalink
fix if
Browse files Browse the repository at this point in the history
  • Loading branch information
jdtuck committed Dec 22, 2023
1 parent 3b5d413 commit 049e358
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if: matrix.os == 'ubuntu-latest'
if [ "$RUNNER_OS" == "Linux" ]; then
sudo apt-get install -y libopenblas-dev
if: matrix.os == 'windows-latest'
elif [ "$RUNNER_OS" == "Windows" ]; then
python -m pip install mkl-devel
if: matrix.os == 'macos-latest'
elif [ "$RUNNER_OS" == "macOS" ]; then
brew install open
python -m pip install flake8 pytest pytest-runner coverage
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
Expand Down

0 comments on commit 049e358

Please sign in to comment.