compose-lobsters/.github/workflows/pull_request.yml
Harsh Shandilya 3d7172d664
Switch to Pixel XL profile
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
2021-03-11 10:40:01 +05:30

38 lines
990 B
YAML

name: CI
on:
push:
branches:
- staging
- trying
jobs:
test-pr:
runs-on: macOS-latest
steps:
- uses: actions/setup-java@d202f5dbf7256730fb690ec59f6381650114feb2
with:
java-version: '11'
- name: Checkout repository
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
- name: Copy CI gradle.properties
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
- name: Run unit and instrumentation tests
uses: reactivecircus/android-emulator-runner@d2799957d660add41c61a5103e2fbb9e2889eb73
with:
api-level: 30
target: google_apis
profile: pixel_xl
script: |
./gradlew test executeScreenshotTests --stacktrace
- name: (Fail-only) upload test report
if: failure()
uses: actions/upload-artifact@27bce4eee761b5bc643f46a8dfb41b430c8d05f6
with:
name: Test report
path: app/build/reports