Skip to content

Commit

Permalink
Update build_tests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Mariosmsk authored May 11, 2024
1 parent 880ff95 commit f44025a
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/build_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,14 @@ jobs:

- name: Install dependencies
run: |
python${{ matrix.python-version }} -m pip install --upgrade pip
python${{ matrix.python-version }} -m pip install flake8 pytest
python${{ matrix.python-version }} -m pip install -r requirements.txt
if [ "${{ runner.os }}" = "macOS" ]; then
python${{ matrix.python-version }} -m pip install --upgrade pip
python${{ matrix.python-version }} -m pip install flake8 pytest
python${{ matrix.python-version }} -m pip install -r requirements.txt
else
python -m pip install --upgrade pip
python -m pip install flake8 pytest
python -m pip install -r requirements.txt
- name: Install libomp on macOS
if: runner.os == 'macOS'
Expand Down

0 comments on commit f44025a

Please sign in to comment.