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 d5eced6 commit 377c528Copy full SHA for 377c528
.github/workflows/ci.yml
@@ -30,11 +30,11 @@ jobs:
30
uses: actions/cache@v5
31
with:
32
path: ~/.cache/pip
33
- key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
+ key: ${{ runner.os }}-pip-${{ hashFiles('*-requirements.txt') }}
34
restore-keys: ${{ runner.os }}-pip-
35
36
- name: Install dependencies
37
- run: pip install -r requirements.txt
+ run: pip install -r dev-requirements.txt
38
39
- name: Check for ungenerated migrations
40
run: python manage.py makemigrations --check --dry-run
0 commit comments