Skip to content

Merge branch 'actions=doc' of github.com:Nikronic/niklib into actions… #5

Merge branch 'actions=doc' of github.com:Nikronic/niklib into actions…

Merge branch 'actions=doc' of github.com:Nikronic/niklib into actions… #5

Workflow file for this run

name: Build Sphinx docs
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: install package and docs optional dependencies
run: pip install .[doc]
- name: Build docs
run: |
cd docs
make html