Version 0.7.0 bump (#600) #497
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: 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 installed 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 installed 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 installed cvxpy formulaic patsy scikit-learn umap-learn | |
- name: Docs can Build | |
run: | | |
sudo apt-get update && sudo apt-get install pandoc | |
python -m pip install -e ".[docs]" | |
mkdocs build |