Skip to content

Commit 91fe7dd

Browse files
Updated GitHub Actions
1 parent 6fc5967 commit 91fe7dd

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/django.yml

+5
Original file line numberDiff line numberDiff line change
@@ -18,21 +18,26 @@ 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
40+
3641
- name: Run Tests
3742
run: |
3843
python manage.py test

0 commit comments

Comments
 (0)