Github Action Step Script
name: Run Tests on Pull Requests
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v2
- name: Run GPTDriver tests
run: curl https://app.mobileboost.io/cli.sh | bash ${{ github.workspace }}/path_to_your_build.apk android
env:
API_ORG_KEY: ${{ secrets.API_ORG_KEY }}
API_TOKEN: ${{ secrets.API_TOKEN }}
TEST_TAGS: ready,...Last updated