Skip to content

Changing Multi objective selection logic #24

Changing Multi objective selection logic

Changing Multi objective selection logic #24

Workflow file for this run

name: GitHub Pages Documentation Generation
on:
push:
branches:
- main
pull_request:
jobs:
gh_pages_generation:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"] # use 3.11 to match amlro python_requires
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install tox
- name: Build documentation
run: tox -e docs
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/build/html
publish_branch: gh-pages
# optional: keep history
keep_files: true