Skip to content

Commit 4b1cfdc

Browse files
committed
Documentation dependencies are required
1 parent 828d5da commit 4b1cfdc

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/lint-and-tests.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,14 @@ jobs:
3232
with:
3333
python-version: ${{ matrix.python-version }}
3434
cache: "pip"
35+
cache-dependency-path: "requirements/*.txt"
3536

3637
- name: Install dependencies
3738
run: |
3839
python -m pip install --upgrade pip
39-
python -m pip install -r requirements.txt
40-
python -m pip install -r requirements/development.txt
40+
python -m pip install --upgrade -r requirements.txt
41+
python -m pip install --upgrade -r requirements/development.txt
42+
python -m pip install --upgrade -r requirements/documentation.txt
4143
4244
- name: Lint with flake8
4345
run: |

0 commit comments

Comments
 (0)