Simplified and thereby extended grouping, filtering, and splitting to control-comparison, over to global metrics and to bulk-instance metrics #2407
Workflow file for this run
This file contains 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 Docs Compilation | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
compile-docs: | |
runs-on: ubuntu-latest | |
env: | |
OS: ubuntu-latest | |
PYTHONPATH: ./docs | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.8' | |
cache: 'pip' # caching pip dependencies | |
- run: pip install -r requirements/base.rqr | |
- run: pip install -r requirements/docs.rqr | |
- name: Install package | |
run: | | |
pip install -e . | |
- name: Print Python Path | |
run: python -c "import sys; print(sys.path)" | |
- name: Compile Docs | |
run: make docs | |