]Add dependency graph #105
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Documentation | |
on: [push] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.x" | |
cache: "pip" | |
- name: Add system dependencies | |
run: | | |
sudo add-apt-repository ppa:potassco/stable | |
sudo apt update | |
sudo apt install clingo libclingo-dev gcc python3-build doxygen | |
- name: Add pygments-pasp for pasp syntax highlighting | |
run: | | |
pip install pygments-pasp | |
- name: Add Python dependencies | |
run: | | |
python -m pip install --upgrade pip setuptools build pdoc | |
pip install -r requirements.txt | |
- name: Build pasp | |
run: | | |
python setup.py build_ext --build-lib pasp/ | |
python setup.py build_ext --inplace | |
- name: Generate docs | |
run: | | |
pdoc --math --logo "https://raw.githubusercontent.com/kamel-usp/dpasp/master/logo/logo.svg" -t docs/user pasp -o _site/ | |
doxygen | |
cp -r examples/ _site/ | |
- name: Generate syntax highlighted examples | |
run: | | |
bash docs/generate_examples.sh | |
- name: Upload to GitHub Pages | |
uses: actions/upload-pages-artifact@v1 | |
with: | |
path: _site/ | |
deploy: | |
needs: build | |
runs-on: ubuntu-22.04 | |
permissions: | |
pages: write | |
id-token: write | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
steps: | |
- id: deployment | |
uses: actions/deploy-pages@v1 | |