Added feature to highlight corresponding ICA trace from topo maps #260
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: build documentation | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: 3.9 | |
| - name: Install Pylossless | |
| run: | | |
| pip install --upgrade pip | |
| pip install -e . | |
| - name: Install testing dependencies | |
| run: pip install -r requirements_testing.txt | |
| - name: Install doc dependencies | |
| run: pip install -r docs/requirements_doc.txt | |
| - name: Build documentation | |
| run: | | |
| cd docs | |
| make html |