Skip to content

Commit e3ee4bb

Browse files
Updated GitHub Actions
1 parent 91fe7dd commit e3ee4bb

File tree

1 file changed

+20
-19
lines changed

1 file changed

+20
-19
lines changed

.github/workflows/django.yml

+20-19
Original file line numberDiff line numberDiff line change
@@ -17,27 +17,28 @@ jobs:
1717
python-version: [3.8, 3.9, '3.10']
1818

1919
steps:
20-
- uses: actions/checkout@v4
20+
- name: Checkout source Git branch
21+
uses: actions/checkout@v4
2122

22-
- name: Set up Python ${{ matrix.python-version }}
23-
uses: actions/setup-python@v4
24-
with:
25-
python-version: ${{ matrix.python-version }}
23+
- name: Set up Python ${{ matrix.python-version }}
24+
uses: actions/setup-python@v4
25+
with:
26+
python-version: ${{ matrix.python-version }}
2627

27-
- name: Install Dependencies
28-
run: |
29-
python -m pip install --upgrade pip
30-
pip install -r requirements.txt
28+
- name: Install Dependencies
29+
run: |
30+
python -m pip install --upgrade pip
31+
pip install -r requirements.txt
3132
32-
- name: Run migrations
33-
run: |
34-
python manage.py makemigrations
35-
python manage.py migrate
33+
- name: Run migrations
34+
run: |
35+
python manage.py makemigrations
36+
python manage.py migrate
3637
37-
- name: Lint with flake8
38-
run: |
39-
flake8
38+
- name: Lint with flake8
39+
run: |
40+
flake8
4041
41-
- name: Run Tests
42-
run: |
43-
python manage.py test
42+
- name: Run Tests
43+
run: |
44+
python manage.py test

0 commit comments

Comments
 (0)