File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 11
11
- name : Checkout python-for-android
12
12
uses : actions/checkout@v2
13
13
- name : Set up Python 3.7
14
- uses : actions/setup-python@v2
14
+ uses : actions/setup-python@v2.2.1
15
15
with :
16
16
python-version : 3.7
17
17
- name : Run flake8
32
32
- name : Checkout python-for-android
33
33
uses : actions/checkout@v2
34
34
- name : Set up Python ${{ matrix.python-version }}
35
- uses : actions/setup-python@v2
35
+ uses : actions/setup-python@v2.2.1
36
36
with :
37
37
python-version : ${{ matrix.python-version }}
38
38
- name : Tox tests
Original file line number Diff line number Diff line change @@ -24,11 +24,11 @@ jobs:
24
24
- type -t deactivate && deactivate || true
25
25
- export PATH=/opt/python/3.7.1/bin:$PATH
26
26
# Install tox
27
- - pip3.7 install tox>=2.0
27
+ - python3.7 -m pip install tox>=2.0
28
28
# Install coveralls & dependencies
29
29
# Note: pyOpenSSL needed to send the coveralls reports
30
- - pip3.7 install pyOpenSSL
31
- - pip3.7 install coveralls
30
+ - python3.7 -m pip install pyOpenSSL
31
+ - python3.7 -m pip install coveralls
32
32
script :
33
33
# ignores test_pythonpackage.py since it runs for too long
34
34
- tox -- tests/ --ignore tests/test_pythonpackage.py
You can’t perform that action at this time.
0 commit comments