Skip to content

Commit

Permalink
Update python-package-conda.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
vsyrgkanis authored Jun 28, 2024
1 parent 2c29b23 commit b20d3c0
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/python-package-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,18 @@ jobs:
with:
python-version: '3.10' # Use Python 3.10

- name: Install git
run: |
if [[ "$RUNNER_OS" == "Linux" ]]; then
sudo apt-get update
sudo apt-get install -y git
elif [[ "$RUNNER_OS" == "macOS" ]]; then
brew install git
elif [[ "$RUNNER_OS" == "Windows" ]]; then
choco install git
fi
shell: bash

- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit b20d3c0

Please sign in to comment.