Skip to content

Python 3.11 and CVXOPT default #683

Python 3.11 and CVXOPT default

Python 3.11 and CVXOPT default #683

Workflow file for this run

name: DeerLab PR tests
on:
pull_request:
branches:
- "**"
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.9]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: setup.py
- run: |
python -m pip install --upgrade pip
pip install wheel
pip install .
- name: Test with pytest
run: |
pytest