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 1015286 commit fd00ae3Copy full SHA for fd00ae3
.github/workflows/ci-cd.yml
@@ -17,15 +17,10 @@ jobs:
17
uses: actions/setup-python@v5
18
with:
19
python-version: ${{ matrix.python-version }}
20
- - name: Clear pip cache
21
- run: |
22
- python -m pip cache purge
23
- - name: Upgrade pip
24
25
- python -m pip install --upgrade pip
26
- name: Install dependencies
27
run: |
28
- pip install -r requirements.txt --index-url https://pypi.org/simple
+ python -m pip install --upgrade pip
+ pip install -r requirements.txt
29
- name: Run database migrations
30
31
python manage.py migrate
@@ -34,4 +29,4 @@ jobs:
34
black .
35
- name: Run tests with coverage
36
37
- python manage.py test
32
+ python manage.py test
0 commit comments