302 code bug spot analysis visualizations have nested window dressings #648
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: github-DOCS | |
| on: | |
| pull_request: | |
| types: [ opened, reopened, synchronize ] | |
| permissions: | |
| contents: none | |
| # Cancels any in progress 'workflow' associated with this PR | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| docs-check: | |
| name: docs-check | |
| if: github.event.repository.fork == false | |
| runs-on: [ubuntu-latest] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| path: OpenCSP | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.10' | |
| - name: Sphinx docs check | |
| run: | | |
| cd OpenCSP | |
| pip install -r requirements.txt | |
| cd doc | |
| pip install -r requirements.txt | |
| sudo apt install -y pandoc | |
| ./make_docs.sh | |