@@ -28,13 +28,13 @@ jobs:
28
28
python-version : ${{ matrix.python-version }}
29
29
30
30
- name : Setup Node.js
31
- if : matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9 '
31
+ if : matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10 '
32
32
uses : actions/setup-node@v3
33
33
with :
34
34
node-version : ' 16'
35
35
36
36
- name : Install appium and adb
37
- if : matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9 '
37
+ if : matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10 '
38
38
run : |
39
39
npm install appium android-tools-bin &&
40
40
cp ./node_modules/android-tools-bin/dist/linux/x86/adb ./node_modules/.bin/adb &&
46
46
run : make setup
47
47
48
48
- name : Run Unit tests
49
- if : matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9 '
49
+ if : matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10 '
50
50
run : |
51
51
export PATH="$PATH:./node_modules/.bin" && make test
52
52
@@ -56,15 +56,15 @@ jobs:
56
56
make test
57
57
58
58
- name : Coveralls
59
- if : matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9 '
59
+ if : matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10 '
60
60
uses : AndreMiras/coveralls-python-action@develop
61
61
62
62
- name : make packages
63
- if : github.event_name == 'release' && matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9 '
63
+ if : github.event_name == 'release' && matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10 '
64
64
run : make package
65
65
66
66
- name : publish
67
- if : github.event_name == 'release' && matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9 '
67
+ if : github.event_name == 'release' && matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10 '
68
68
env :
69
69
TWINE_USERNAME : ${{ secrets.TWINE_USERNAME }}
70
70
TWINE_PASSWORD : ${{ secrets.TWINE_PASSWORD }}
0 commit comments