We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a2f8e1 commit 79c3a68Copy full SHA for 79c3a68
1 file changed
.github/workflows/python-app.yml
@@ -48,18 +48,10 @@ jobs:
48
uses: actions/setup-python@v3
49
with:
50
python-version: "3.10"
51
- - name: Cache dependencies
52
- uses: actions/cache@v2
53
- with:
54
- path: ~/.cache/pip
55
- key: ${{ runner.os}}-python-${{hashFiles('**/requirements.txt')}}
56
- restore-keys: |
57
- ${{runner.os}}-python-
58
- name: Install dependencies
59
run: |
60
python -m pip install --upgrade pip
61
pip install sphinx sphinx-rtd-theme
62
- if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
63
- name: Generate Documentation
64
65
# stop the build if there are Python syntax errors or undefined names
0 commit comments