Skip to content

Commit

Permalink
Add CI workflow using Ford documentation (#33)
Browse files Browse the repository at this point in the history
- Add a new file: .github/workflows/ford.yml to automate documentation build and deployment.
  • Loading branch information
gha3mi committed Feb 14, 2024
1 parent 059521c commit d4c0dad
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/ford.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: FORD

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

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
with:
submodules: recursive

- 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
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Build FORD Documentation
run: ford ./ford.yml

- name: Deploy Documentation
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: doc

0 comments on commit d4c0dad

Please sign in to comment.