Update minimum CMake to v3.10 #495
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-latest | |
| steps: | |
| - name: Git checkout with submodules | |
| uses: actions/[email protected] | |
| with: | |
| submodules: true | |
| - name: Set up Python | |
| uses: actions/[email protected] | |
| with: | |
| python-version: 3.8 | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install virtualenv | |
| - name: Run test script | |
| run: | | |
| cd docs | |
| ./jenkins.sh |