Remove follow-up TAS example after QAP diagram #615
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: DocsTest | |
on: | |
push: | |
pull_request: | |
branches: | |
- develop | |
- feature/** | |
schedule: | |
- cron: "0 0 * * 0" # weekly | |
jobs: | |
build: | |
name: Build Docs | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
python-version: [3.9, "3.10", "3.11", "3.12"] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: pip | |
cache-dependency-path: "setup.py" | |
- name: Python Packages Install | |
run: | | |
python -m pip install --upgrade pip # upgrade pip | |
pip install wheel | |
pip install .[skl,stats,docs] | |
- name: Build | |
run: | | |
cd docs && make html |