Skip to content

Commit

Permalink
CI: Run tests in GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
justin-stephenson committed Sep 5, 2023
1 parent cdfb45b commit ae8671f
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,24 @@ jobs:

- name: Run build with Gradle Wrapper
run: ./gradlew build -x lint

tests:
runs-on: macos-latest
steps:
- name: Checkout project sources
uses: actions/checkout@v3

- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: 11
distribution: 'adopt'
cache: 'gradle'

- name: Run tests
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: 29
script: ./gradlew connectedAndroidTest --stacktrace
disable-animations: true
disable-spellchecker: true

0 comments on commit ae8671f

Please sign in to comment.