refac(vev): move vev impl functions out of detail namespaces #1930
Workflow file for this run
This file contains hidden or 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: Docs | |
| on: [push, pull_request, workflow_dispatch] | |
| jobs: | |
| build: | |
| name: "Build and Deploy" | |
| runs-on: ubuntu-24.04 | |
| env: | |
| CXX: g++ | |
| BUILD_CONFIG: > | |
| -G Ninja | |
| -DCMAKE_BUILD_TYPE=Release | |
| -DCMAKE_PREFIX_PATH='/usr/include/boost' | |
| -DBUILD_TESTING=OFF | |
| -DSEQUANT_BUILD_DOCS=ON | |
| -DSEQUANT_BUILD_DOCS_API_BREATHEEXHALE=ON | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.9' # Breathe needs 3.9 or later | |
| cache: 'pip' | |
| - name: Setup Environment | |
| run: | | |
| cmake -E make_directory ${{github.workspace}}/build | |
| sudo apt-get update | |
| sudo apt-get install -y ninja-build libboost-all-dev doxygen | |
| pip install -r doc/.sphinx/requirements.txt | |
| - name: Build Docs | |
| working-directory: ${{github.workspace}}/build | |
| run: | | |
| cmake $GITHUB_WORKSPACE $BUILD_CONFIG | |
| cmake --build . --target sphinx-sequant | |
| - name: Deploy to gh-pages | |
| if: ${{ (github.event_name == 'push' && github.ref == 'refs/heads/master') || github.event_name == 'workflow_dispatch' }} | |
| uses: peaceiris/actions-gh-pages@v4 | |
| with: | |
| publish_branch: gh-pages | |
| force_orphan: true | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| publish_dir: ${{github.workspace}}/build/doc/html |