Blog post: Make running programs through AiiDA a piece of cake #336
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: continuous-integration | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
linkcheck: | |
runs-on: ubuntu-latest | |
timeout-minutes: 8 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.11' | |
- name: Install python dependencies | |
run: | | |
pip install --upgrade pip | |
pip install -rrequirements.txt | |
- name: Run linkcheck | |
run: sphinx-build -b linkcheck docs/ docs/_build/linkcheck --color -q |