Skip to content

attempt to create docs using sphinx in an action #4

attempt to create docs using sphinx in an action

attempt to create docs using sphinx in an action #4

# This starter workflow is for a CMake project running on multiple platforms. There is a different starter workflow if you just want a single platform.
# See: https://github.com/actions/starter-workflows/blob/main/ci/cmake-single-platform.yml
name: CMake on multiple platforms
on:
push:
branches: [ "trunk", "develop" ]
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install dependencies Ubuntu
run: >
sudo apt-get update && sudo apt-get install cmake
- name: Run Doxygen
run: >
"cmake -S . -B build -DBUILD_DOCUMENTATION=ON -DBUILD_TESTING=OFF"
"cmake --build build --target Sphyinx-libmcfp"