Skip to content

meta: remove build docs workflow #10

meta: remove build docs workflow

meta: remove build docs workflow #10

Workflow file for this run

name: Build docs
on:
pull_request:
branches:
- main
push:
branches:
- main
workflow_dispatch:
permissions:
contents: write
pull-requests: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install typing_extensions
pip install -e .[dev]
- name: Build docs
run: pdoc magic_list/ -n -d numpy -o docs/
- name: Push the result
run: |
git config user.name "Documentation Builder[bot]"
git add docs/
git commit -m "doc: build"
git push origin HEAD:${{ github.ref_name }}