Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use conda instead of mamba in CI #129

Draft
wants to merge 5 commits into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,20 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
miniforge-version: latest
use-mamba: true
channels: conda-forge
channel-priority: true

- name: Install package and dependencies
run: |
mamba install -c gurobi -c funkelab ilpy
conda update --all
conda install -c gurobi -c funkelab ilpy
python -m pip install -e .[test]

- name: Debug Conda Env
run: |
conda info
conda list

- name: Test
run: pytest tests -v --color=yes --cov=motile --cov-report=xml

Expand Down
Loading