docs: allow MySt (markdown) files, add build_docs.sh script, installing debian packages through apt #527
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: CI-docs | |
| on: | |
| push: | |
| branches: ['master', 'github_actions_ci'] | |
| paths: ['docs/**', 'examples/**'] | |
| pull_request: | |
| branches: ['master', 'github_actions_ci'] | |
| paths: ['docs/**', 'examples/**'] | |
| jobs: | |
| docs: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Git checkout with submodules | |
| uses: actions/[email protected] | |
| with: | |
| submodules: true | |
| - name: Install dependencies | |
| run: | | |
| docs/build_docs.sh --install-deps --skip-build | |
| - name: Build docs | |
| run: | | |
| docs/build_docs.sh |