Skip to content

Commit

Permalink
Configure Github Actions to run unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
danielepantaleone committed Oct 31, 2023
1 parent 8674eb7 commit f71ee6d
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/android-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Android Tests
on:
push:
branches: [ "master" ]
paths-ignore:
- 'README.md'
pull_request:
branches: [ "master" ]
jobs:
tests:
runs-on: macos-latest
steps:
- name: Repository checkout
uses: actions/checkout@v3
- name: set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Run connected tests
uses: ReactiveCircus/android-emulator-runner@v2
with:
api-level: 23
target: google_apis
arch: x86_64
script: ./gradlew connectedCheck

0 comments on commit f71ee6d

Please sign in to comment.