Skip to content

Commit

Permalink
was worth a try
Browse files Browse the repository at this point in the history
  • Loading branch information
stefdoerr committed Jan 24, 2025
1 parent 10aba31 commit e118a57
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,22 @@ jobs:
python-version: ${{ matrix.python-version }}
channels: conda-forge
conda-remove-defaults: "true"
auto-update-conda: true
if: matrix.os != 'macos-13'

- uses: conda-incubator/setup-miniconda@v3
with:
python-version: ${{ matrix.python-version }}
channels: conda-forge
mamba-version: "*"
conda-remove-defaults: "true"
if: matrix.os == 'macos-13'

- name: Install OS-specific conda dependencies
run: |
if [[ "${{ runner.os }}" == "Linux" ]]; then
conda install --file conda_deps_linux.txt --channel conda-forge --override-channels
elif [[ "${{ runner.os }}" == "macos-13" ]]; then
mamba install --file conda_deps_osx.txt --channel conda-forge --override-channels
elif [[ "${{ runner.os }}" == "macOS" ]]; then
conda install --file conda_deps_osx.txt --channel conda-forge --override-channels
elif [[ "${{ runner.os }}" == "Windows" ]]; then
Expand Down

0 comments on commit e118a57

Please sign in to comment.