Skip to content

feat: adding ci-cd for docs building #1

feat: adding ci-cd for docs building

feat: adding ci-cd for docs building #1

Workflow file for this run

name: ci-cd
on: [push, pull_request]
jobs:
ci:
# Set up operating system
runs-on: ubuntu-latest
# Define job steps
steps:
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Check-out repository
uses: actions/checkout@v2
- name: Install poetry
uses: snok/install-poetry@v1
- name: Install package
run: poetry install
- name: Build documentation
run: poetry run make html --directory docs/