Skip to content

Commit 673cd78

Browse files
Updated GitHub Actions
1 parent c55eaee commit 673cd78

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/django.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,22 @@ jobs:
1818

1919
steps:
2020
- uses: actions/checkout@v4
21+
2122
- name: Set up Python ${{ matrix.python-version }}
2223
uses: actions/setup-python@v4
2324
with:
2425
python-version: ${{ matrix.python-version }}
26+
2527
- name: Install Dependencies
2628
run: |
2729
python -m pip install --upgrade pip
2830
pip install -r requirements.txt
31+
2932
- name: Run migrations
3033
run: |
3134
python manage.py makemigrations
3235
python manage.py migrate
36+
3337
- name: Lint with flake8
3438
run: |
3539
flake8

0 commit comments

Comments
 (0)