File tree Expand file tree Collapse file tree 1 file changed +20
-19
lines changed Expand file tree Collapse file tree 1 file changed +20
-19
lines changed Original file line number Diff line number Diff line change @@ -17,26 +17,27 @@ 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
40- - name : Run Tests
41- run : |
42- python manage.py test
38+ - name : Lint with flake8
39+ run : |
40+ flake8
41+ - name : Run Tests
42+ run : |
43+ python manage.py test
You can’t perform that action at this time.
0 commit comments