Skip to content

Commit fd00ae3

Browse files
Created feature/ci-cd pipeline and project setup
1 parent 1015286 commit fd00ae3

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

.github/workflows/ci-cd.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,10 @@ jobs:
1717
uses: actions/setup-python@v5
1818
with:
1919
python-version: ${{ matrix.python-version }}
20-
- name: Clear pip cache
21-
run: |
22-
python -m pip cache purge
23-
- name: Upgrade pip
24-
run: |
25-
python -m pip install --upgrade pip
2620
- name: Install dependencies
2721
run: |
28-
pip install -r requirements.txt --index-url https://pypi.org/simple
22+
python -m pip install --upgrade pip
23+
pip install -r requirements.txt
2924
- name: Run database migrations
3025
run: |
3126
python manage.py migrate
@@ -34,4 +29,4 @@ jobs:
3429
black .
3530
- name: Run tests with coverage
3631
run: |
37-
python manage.py test
32+
python manage.py test

0 commit comments

Comments
 (0)