Skip to content

meta: remove build docs workflow #6

meta: remove build docs workflow

meta: remove build docs workflow #6

Workflow file for this run

name: Build docs
on:
pull_request:
branches:
- main
push:
branches:
- main
workflow_dispatch:
permissions:
contents: 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 push