From 41b0171f89d2dfc0db2d2a729ea25b4d79ef50ce Mon Sep 17 00:00:00 2001 From: "Marios S. Kyriakou" Date: Sat, 11 May 2024 15:12:08 +0300 Subject: [PATCH] Revert "Update build_tests.yml" This reverts commit f44025ad4a69f08bc875f5d8d3923c7c999cb07a. --- .github/workflows/build_tests.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build_tests.yml b/.github/workflows/build_tests.yml index 67e4571..378c84f 100644 --- a/.github/workflows/build_tests.yml +++ b/.github/workflows/build_tests.yml @@ -18,14 +18,9 @@ jobs: - name: Install dependencies run: | - 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 + 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 - name: Install libomp on macOS if: runner.os == 'macOS'