Skip to content

fix yamls

fix yamls #6

# 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: Configure CMake
run: >
cmake -S . -B build -DBUILD_DOCUMENTATION=ON -DBUILD_TESTING=OFF
- name: Run Sphinx
run: >
cmake --build build --target Sphyinx-libmcfp