Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan8be committed Apr 29, 2024
1 parent d2eb53e commit 7cf916d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on: [ push, pull_request ]
env:
CORE_CHANGED: false
APP_CHANGED: false
PYTHON_VENV_ROOT: ${{ github.workspace }}/src/python-venv

jobs:
install-metadynminer:
Expand All @@ -27,6 +28,10 @@ jobs:

- name: Install dependencies
run: |
if [ "$RUNNER_OS" == "macOS" ]; then
python3 -m venv ${PYTHON_VENV_ROOT}
source ${PYTHON_VENV_ROOT}/bin/activate
fi
python --version
python3 -m pip install --upgrade pip
pip3 install pytest pytest-cov
Expand Down

0 comments on commit 7cf916d

Please sign in to comment.