Skip to content

Merge pull request #49 from martinmiglio/dependabot/pip/sphinx-7.1.1 #191

Merge pull request #49 from martinmiglio/dependabot/pip/sphinx-7.1.1

Merge pull request #49 from martinmiglio/dependabot/pip/sphinx-7.1.1 #191

Workflow file for this run

name: Docs Build Test
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Install poetry
run: pipx install poetry
- name: Set up Python 3.8
uses: actions/setup-python@master
with:
python-version: "3.8"
cache: "poetry"
- name: Install package and dependencies
run: |
poetry install --with docs --without dev
- name: Test docs build
run: |
cd docs
poetry run make html