Parquet: bugfix on the logic of detecting non-flat columns #135
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: Test Documentation Generation | |
| on: | |
| pull_request: | |
| branches: [ master, '**-dev' ] | |
| push: | |
| branches: [ 'feature/**', 'hotfix/**'] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build_docs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Update apt | |
| run: | | |
| sudo apt-get update | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get install doxygen sphinx | |
| pip install -r docs/sphinx/requirements.txt | |
| - name: make | |
| run: | | |
| mkdir build | |
| cd build | |
| cmake ../ -DYGM_DOCS_ONLY=On | |
| make sphinx |