Skip to content

Allowing to compute lambda fitting on series and stop dropping PM if it is in the REE pattern #526

Allowing to compute lambda fitting on series and stop dropping PM if it is in the REE pattern

Allowing to compute lambda fitting on series and stop dropping PM if it is in the REE pattern #526

Workflow file for this run

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:
matrix:
os: [ubuntu-latest]
python-version: [3.8, 3.9, "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
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