Skip to content

Commit

Permalink
ci: ensure we set -y during conda install on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
MilesCranmer committed Jan 3, 2025
1 parent 4ae3855 commit af1eee2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI_conda_forge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,14 @@ jobs:
- name: "Install pysr with mamba"
run: |
echo "Installing pysr with mamba"
mamba install pysr
mamba install -y pysr
python -c "import pysr"
echo "Finished."
if: ${{ matrix.use-mamba }}
- name: "Install pysr with conda"
run: |
echo "Installing pysr with conda"
conda install pysr
conda install -y pysr
python -c "import pysr"
echo "Finished."
if: ${{ !matrix.use-mamba }}
Expand Down

0 comments on commit af1eee2

Please sign in to comment.