Skip to content

Commit

Permalink
Added github actions to run uiTests
Browse files Browse the repository at this point in the history
  • Loading branch information
epicadk committed Dec 29, 2020
1 parent 093f23d commit 11b3117
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/UI tests.yml
Original file line number Diff line number Diff line change
@@ -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 ]
pull_request:
branches: [ develop ]

# 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

0 comments on commit 11b3117

Please sign in to comment.