Skip to content

Commit 802ad67

Browse files
authored
publish in py3.10 (#30)
1 parent 0b3ac44 commit 802ad67

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ jobs:
2828
python-version: ${{ matrix.python-version }}
2929

3030
- 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'
3232
uses: actions/setup-node@v3
3333
with:
3434
node-version: '16'
3535

3636
- 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'
3838
run: |
3939
npm install appium android-tools-bin &&
4040
cp ./node_modules/android-tools-bin/dist/linux/x86/adb ./node_modules/.bin/adb &&
@@ -46,7 +46,7 @@ jobs:
4646
run: make setup
4747

4848
- 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'
5050
run: |
5151
export PATH="$PATH:./node_modules/.bin" && make test
5252
@@ -56,15 +56,15 @@ jobs:
5656
make test
5757
5858
- name: Coveralls
59-
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9'
59+
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10'
6060
uses: AndreMiras/coveralls-python-action@develop
6161

6262
- 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'
6464
run: make package
6565

6666
- 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'
6868
env:
6969
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
7070
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}

0 commit comments

Comments
 (0)