Swap assert condition and message to be in line with static_assert sy… #753
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Documentation | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
documentation: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Install and Build | |
env: | |
CGV_DIR: /home/runner/work/cgv/cgv | |
CGV_BUILD: /home/runner/work/cgv/cgv/build | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y doxygen | |
mkdir build | |
doxygen doc/cgv.dox | |
- name: Deploy | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: build/cgv_doc/html |