Skip to content

remove useless conf.py #7

remove useless conf.py

remove useless conf.py #7

Workflow file for this run

name: ProxyPatternPool documentation publication on GitHub
on:
push:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
- name: Check documentation
run: make check.docs
- name: Generate documentation
run: |
make doc
find _site -type d -print | xargs chmod a+rx
find _site -type f -print | xargs chmod a+r
- name: Upload to GitHub Pages
uses: actions/upload-pages-artifact@v3
deploy:
needs: build
environment:
name: github-pages
permissions:
pages: write
id-token: write
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4