File tree 3 files changed +75
-72
lines changed
3 files changed +75
-72
lines changed Original file line number Diff line number Diff line change 7
7
branches : [ develop ]
8
8
9
9
jobs :
10
- lint :
10
+
11
+ job_lint :
11
12
runs-on : ubuntu-latest
12
13
steps :
14
+
13
15
- uses : actions/checkout@v3
14
16
15
17
# https://devcenter.heroku.com/articles/getting-started-with-python
18
20
- name : Set up Python 3.10
19
21
uses : actions/setup-python@v4
20
22
with :
21
- python-version : 3.10
23
+ python-version : ' 3.10'
22
24
23
25
- name : Install pipenv
24
26
run : |
44
46
name : flake8-report
45
47
path : test-reports/flake8
46
48
# Use failure() to upload only if failure occurs
47
- if : failure()
49
+ if : ${{ failure() }}
48
50
49
- test :
51
+ job_test :
50
52
runs-on : ubuntu-latest
51
53
52
54
services :
@@ -78,12 +80,12 @@ jobs:
78
80
- name : Set up Python 3.10
79
81
uses : actions/setup-python@v4
80
82
with :
81
- python-version : 3.10
83
+ python-version : ' 3.10'
82
84
83
- - name : Install pipenv
84
- run : |
85
- pip install --upgrade pip
86
- pip install pipenv
85
+ - name : Install pipenv
86
+ run : |
87
+ pip install --upgrade pip
88
+ pip install pipenv
87
89
88
90
- name : Install dependencies
89
91
run : |
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ flake8 = "*"
10
10
isort = " *"
11
11
12
12
[packages ]
13
- Django = " >=3.2.14 ,<3.3"
13
+ Django = " >=3.2.16 ,<3.3"
14
14
django-countries = " *"
15
15
django-heroku = " *"
16
16
django-libsass = " *"
You can’t perform that action at this time.
0 commit comments