Bump pydata-sphinx-theme from 0.13.3 to 0.14.4 #288
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: Build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.9", "3.10", "3.11"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
sudo apt install pandoc | |
python -m pip install --upgrade pip | |
pip install poetry | |
if [ -f pyproject.toml ]; then poetry install --with dev,docs; fi | |
- name: Lint with ruff | |
run: | | |
poetry run ruff compotime tests | |
- name: Test with pytest | |
run: | | |
poetry run make tests | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
- name: Build documentation | |
run: | | |
poetry run make docs | |
- name: Check compatibility with other libraries | |
run: | | |
poetry add statsmodels scikit-learn sktime |