Skip to content

Fix badges

Fix badges #53

Workflow file for this run

name: Documentation
on:
push:
branches: [main]
pull_request:
branches: ['*']
defaults:
run:
shell: bash -l {0}
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install
run: |
python -m pip install -r doc/requirements.txt
python -m pip install .
- name: Build docs
run: sphinx-build -n -j auto -b html -d build/doctrees doc build/html
- uses: actions/upload-artifact@v4
with:
name: pshell-docs
path: build/html