Skip to content

Commit

Permalink
fix: gh workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
gemygk committed May 24, 2024
1 parent 9d492f5 commit 2d2248d
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
matrix:
python-version: [ "3.9", "3.10" ]
# solver: ["classic", "libmamba"]
os: [ubuntu-latest, macos-latest]
# os: [ubuntu-latest]
# os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest]
steps:
- name: Install system development tools
if: startsWith(runner.os, 'Linux')
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
name: setup-Mambaforge
continue-on-error: true
# continue-on-error: true
with:
# python-version: "3.9"
python-version: ${{ matrix.python-version }}
Expand All @@ -63,8 +63,14 @@ jobs:
environment-file: ./environment.yml
use-mamba: true
use-only-tar-bz2: true # IMPORTANT: This needs to be set for caching to work properly!
- name: Verify conda environment
run: |
conda info --envs
source activate mikado2
conda list
- name: Install dependencies
run: |
source activate mikado2
python --version
gcc --version
pip --version
Expand Down

0 comments on commit 2d2248d

Please sign in to comment.