Skip to content

Patch release v0.6.15 #403

Patch release v0.6.15

Patch release v0.6.15 #403

Workflow file for this run

name: Check Optional Dependencies
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install flake8 pytest black
- name: Run Base Install
run: |
python -m pip install -e ".[base]"
- name: Run Checks
run: |
python tests/scripts/check_pip.py missing cvxpy
python tests/scripts/check_pip.py contains scikit-learn
python tests/scripts/import_all.py
- name: Install cvxpy
run: |
python -m pip install -e ".[cvxpy]"
- name: Run Checks
run: |
python tests/scripts/check_pip.py contains cvxpy scikit-learn
python tests/scripts/import_all.py
- name: Install All
run: |
python -m pip install -e ".[all]"
- name: Run Checks
run: |
python tests/scripts/check_pip.py contains cvxpy scikit-learn
- name: Docs can Build
run: |
sudo apt-get update && sudo apt-get install pandoc
python -m pip install -e ".[docs]"
sphinx-build doc docs