Skip to content

Merge branch 'develop' into docs #5

Merge branch 'develop' into docs

Merge branch 'develop' into docs #5

Workflow file for this run

name: FORD
on:
push:
branches: [ "docs" ]
pull_request:
branches: [ "docs" ]
jobs:
documentation:
runs-on: ${{ matrix.os }}
permissions:
contents: write
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: [3.12]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Setup Graphviz
uses: ts-graphviz/setup-graphviz@v1
- name: Install FORD
if: contains( matrix.os, 'ubuntu' )
run: |
python -m pip install --upgrade pip
pip install ford
- name: Build FORD documentation
run: ford ./ford.md
- name: Deploy documentation
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: doc