Skip to content

Commit 00369a0

Browse files
Update CI workflow to use merged requirements.txt
1 parent 61adf89 commit 00369a0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,14 @@ jobs:
2828
uses: actions/cache@v3
2929
with:
3030
path: ~/.cache/pip
31-
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt', '**/requirements-dev.txt') }}
31+
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
3232
restore-keys: |
3333
${{ runner.os }}-pip-
3434
3535
- name: Install dependencies
3636
run: |
3737
python -m pip install --upgrade pip
3838
pip install -r requirements.txt
39-
pip install -r requirements-dev.txt
4039
4140
- name: Lint with flake8
4241
run: |

0 commit comments

Comments
 (0)