We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 828d5da commit 4b1cfdcCopy full SHA for 4b1cfdc
.github/workflows/lint-and-tests.yml
@@ -32,12 +32,14 @@ jobs:
32
with:
33
python-version: ${{ matrix.python-version }}
34
cache: "pip"
35
+ cache-dependency-path: "requirements/*.txt"
36
37
- name: Install dependencies
38
run: |
39
python -m pip install --upgrade pip
- python -m pip install -r requirements.txt
40
- python -m pip install -r requirements/development.txt
+ 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
43
44
- name: Lint with flake8
45
0 commit comments