Skip to content

initial support for smp (no scheduler) #9

initial support for smp (no scheduler)

initial support for smp (no scheduler) #9

Workflow file for this run

name: Docs
on:
push:
branches:
- master # or the branch you want to trigger the action
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x' # or the version you need
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -r docs/requirements.txt # ensure your requirements are listed here
- name: Install Doxygen
run: sudo apt-get install doxygen -y
- name: Build documentation
run: |
cd docs
make html
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/_build/html