Use conda instead of mamba in CI #312
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run pre-commit linting | |
run: pipx run pre-commit run --all-files | |
test: | |
name: ${{ matrix.platform }} py${{ matrix.python-version }} | |
runs-on: ${{ matrix.platform }} | |
defaults: | |
run: | |
shell: bash -l {0} | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.9", "3.10", "3.11"] | |
platform: [ubuntu-latest, macos-latest] | |
include: | |
- platform: windows-latest | |
python-version: "3.10" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: conda-incubator/setup-miniconda@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
miniforge-version: latest | |
channels: conda-forge | |
channel-priority: true | |
- name: Install package and dependencies | |
run: | | |
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 | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |