We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61adf89 commit 00369a0Copy full SHA for 00369a0
.github/workflows/ci.yml
@@ -28,15 +28,14 @@ jobs:
28
uses: actions/cache@v3
29
with:
30
path: ~/.cache/pip
31
- key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt', '**/requirements-dev.txt') }}
+ key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
32
restore-keys: |
33
${{ runner.os }}-pip-
34
35
- name: Install dependencies
36
run: |
37
python -m pip install --upgrade pip
38
pip install -r requirements.txt
39
- pip install -r requirements-dev.txt
40
41
- name: Lint with flake8
42
0 commit comments