Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

publish in py3.10 #30

Merged
merged 1 commit into from
Oct 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Setup Node.js
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9'
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10'
uses: actions/setup-node@v3
with:
node-version: '16'

- name: Install appium and adb
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9'
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10'
run: |
npm install appium android-tools-bin &&
cp ./node_modules/android-tools-bin/dist/linux/x86/adb ./node_modules/.bin/adb &&
Expand All @@ -46,7 +46,7 @@ jobs:
run: make setup

- name: Run Unit tests
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9'
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10'
run: |
export PATH="$PATH:./node_modules/.bin" && make test

Expand All @@ -56,15 +56,15 @@ jobs:
make test

- name: Coveralls
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9'
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10'
uses: AndreMiras/coveralls-python-action@develop

- name: make packages
if: github.event_name == 'release' && matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9'
if: github.event_name == 'release' && matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10'
run: make package

- name: publish
if: github.event_name == 'release' && matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9'
if: github.event_name == 'release' && matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10'
env:
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
Expand Down