-
Notifications
You must be signed in to change notification settings - Fork 3
71 lines (60 loc) · 2.08 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: Unit tests
on:
push:
branches: [ main ]
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
release:
types: [ published ]
jobs:
run-unittests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
python-version: [ '3.7', '3.8', '3.9', '3.10' ]
name: ${{ matrix.os }}-Python-${{ matrix.python-version }}
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Setup Node.js
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.10'
run: |
npm install appium android-tools-bin &&
cp ./node_modules/android-tools-bin/dist/linux/x86/adb ./node_modules/.bin/adb &&
export PATH=./node_modules/.bin:$PATH &&
appium --version &&
adb --version
- name: Install dependencies
run: make setup
- name: Run Unit tests
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10'
run: |
export PATH="$PATH:./node_modules/.bin" && make test
- name: Run Unit tests
if: matrix.os != 'ubuntu-latest'
run: |
make test
- name: Coveralls
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.10'
run: make package
- name: publish
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 }}
run: make publish