From 8382653746b92db0852bd4639c27778651fadb4b Mon Sep 17 00:00:00 2001 From: "Marios S. Kyriakou" Date: Wed, 1 May 2024 10:15:49 +0300 Subject: [PATCH] Update build_tests.yml --- .github/workflows/build_tests.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_tests.yml b/.github/workflows/build_tests.yml index ca6ffae..819463f 100644 --- a/.github/workflows/build_tests.yml +++ b/.github/workflows/build_tests.yml @@ -20,10 +20,11 @@ jobs: run: | python -m pip install --upgrade pip pip install flake8 pytest - if [ ${{ runner.os }} = "macOS" ]; then - brew install libomp - fi pip install -r requirements.txt + + - name: Install libomp on macOS + if: runner.os == 'macOS' + run: brew install libomp - name: Lint with flake8 run: |