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 c55eaee commit 673cd78Copy full SHA for 673cd78
.github/workflows/django.yml
@@ -18,18 +18,22 @@ jobs:
18
19
steps:
20
- uses: actions/checkout@v4
21
+
22
- name: Set up Python ${{ matrix.python-version }}
23
uses: actions/setup-python@v4
24
with:
25
python-version: ${{ matrix.python-version }}
26
27
- name: Install Dependencies
28
run: |
29
python -m pip install --upgrade pip
30
pip install -r requirements.txt
31
32
- name: Run migrations
33
34
python manage.py makemigrations
35
python manage.py migrate
36
37
- name: Lint with flake8
38
39
flake8
0 commit comments