Skip to content

catch ilpy v03 solution return type (#42) #7

catch ilpy v03 solution return type (#42)

catch ilpy v03 solution return type (#42) #7

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [main]
workflow_dispatch:
# Allow this job to clone the repo and create a page deployment
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: conda-incubator/setup-miniconda@v2
with:
python-version: "3.11"
mamba-version: "*"
channels: conda-forge
channel-priority: true
- name: Install package and dependencies
run: |
mamba install -c gurobi -c funkelab ilpy
python -m pip install -e .[docs]
- name: Build documentation
run: sphinx-build docs/source docs/build/html -W -b html
- name: Upload Pages Artifact
uses: actions/upload-pages-artifact@v1
with:
path: docs/build/html
retention-days: 90
# deploy:
# needs: build
# runs-on: ubuntu-latest
# environment:
# name: github-pages
# url: ${{ steps.deployment.outputs.page_url }}
# steps:
# - name: Deploy to GitHub Pages
# id: deployment
# uses: actions/deploy-pages@v1