diff --git a/.github/workflows/ui_tests.yml b/.github/workflows/ui_tests.yml new file mode 100644 index 000000000..0709e5e2a --- /dev/null +++ b/.github/workflows/ui_tests.yml @@ -0,0 +1,27 @@ +# This is a basic workflow to help you get started with Actions + +name: Instrumentation Tests + +# Controls when the action will run. +on: + # Triggers the workflow on push or pull request events but only for the develop branch + push: + branches: [ develop , master ] + pull_request: + branches: [ develop , master ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +jobs: + test: + runs-on: macos-latest + steps: + - name: checkout + uses: actions/checkout@v2 + + - name: run tests + uses: reactivecircus/android-emulator-runner@v2 + with: + api-level: 28 + script: ./gradlew connectedCheck