implement 40 percent rule for heat_pumps bigger 11kW #1429
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: "Docs link check" | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install dependencies | |
| run: | | |
| sudo apt install pandoc | |
| python -m pip install --upgrade pip | |
| pip install -r rtd_requirements.txt | |
| - name: Check doc links | |
| run: | | |
| sphinx-build . -b linkcheck -d _build/doctrees _build/html | |
| working-directory: ./doc |