@@ -12,20 +12,20 @@ jobs:
12
12
strategy :
13
13
fail-fast : false
14
14
matrix :
15
- python-version : [3.6 ]
16
- toxenv : [django_not_installed, django_is_installed, flake8, pylint, readme]
15
+ python-version : [3.7 ]
16
+ toxenv : [django_not_installed, flake8, pylint, readme]
17
17
18
18
steps :
19
19
- uses : actions/checkout@v2
20
20
- name : Set up Python ${{ matrix.python-version }}
21
- uses : actions/setup-python@v1
21
+ uses : actions/setup-python@v4
22
22
with :
23
23
python-version : ${{ matrix.python-version }}
24
24
25
25
- name : Execute tests
26
26
run : |
27
- pip install tox
28
- pip install -e .[ for_tests]
27
+ pip install -U pip poetry tox
28
+ poetry install -E for_tests
29
29
30
30
export TOXENV=${{ matrix.toxenv }}
31
31
export PYTHON=${{ matrix.python-version }}
@@ -44,14 +44,14 @@ jobs:
44
44
steps :
45
45
- uses : actions/checkout@v2
46
46
- name : Set up Python ${{ matrix.python-version }}
47
- uses : actions/setup-python@v1
47
+ uses : actions/setup-python@v4
48
48
with :
49
49
python-version : ${{ matrix.python-version }}
50
50
51
51
- name : Execute tests
52
52
run : |
53
- pip install tox
54
- pip install -e .[ for_tests]
53
+ pip install -U pip poetry tox
54
+ poetry install -E for_tests
55
55
56
56
export DJANGO=${{ matrix.django-version }}
57
57
export PYTHON=${{ matrix.python-version }}
@@ -78,14 +78,14 @@ jobs:
78
78
steps :
79
79
- uses : actions/checkout@v2
80
80
- name : Set up Python ${{ matrix.python-version }}
81
- uses : actions/setup-python@v1
81
+ uses : actions/setup-python@v4
82
82
with :
83
83
python-version : ${{ matrix.python-version }}
84
84
85
85
- name : Execute tests
86
86
run : |
87
- pip install tox
88
- pip install -e .[ for_tests]
87
+ pip install -U pip poetry tox
88
+ poetry install -E for_tests
89
89
90
90
export DJANGO=${{ matrix.django-version }}
91
91
export PYTHON=${{ matrix.python-version }}
@@ -109,13 +109,13 @@ jobs:
109
109
steps :
110
110
- uses : actions/checkout@v2
111
111
- name : Set up Python ${{ matrix.python-version }}
112
- uses : actions/setup-python@v1
112
+ uses : actions/setup-python@v4
113
113
with :
114
114
python-version : ${{ matrix.python-version }}
115
115
116
116
- name : Build
117
117
run : |
118
- pip install tox
119
- pip install -e .[ for_tests]
118
+ pip install -U pip poetry tox
119
+ poetry install -E for_tests
120
120
121
121
./scripts/build.sh
0 commit comments