Skip to content

Update __init__.py to v0.2.1 #256

Update __init__.py to v0.2.1

Update __init__.py to v0.2.1 #256

Workflow file for this run

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
use-mamba: true
channels: conda-forge
channel-priority: true
- name: Install package and dependencies
run: |
mamba install -c gurobi -c funkelab ilpy
python -m pip install -e .[test]
- 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 }}