mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-18 03:17:03 +05:30
40 lines
1.1 KiB
YAML
40 lines
1.1 KiB
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
|
|
|
|
- uses: burrunan/gradle-cache-action@03c71a8ba93d670980695505f48f49daf43704a6
|
|
name: Run unit tests
|
|
with:
|
|
arguments: test --stacktrace
|
|
|
|
# - name: Run instrumentation tests
|
|
# uses: reactivecircus/android-emulator-runner@08b092e904025fada32a01b711af1e7ff7b7a4a3
|
|
# with:
|
|
# api-level: 23
|
|
# target: default
|
|
# script: |
|
|
# adb shell settings put global animator_duration_scale 0
|
|
# adb shell settings put global transition_animation_scale 0
|
|
# adb shell settings put global window_animation_scale 0
|
|
# ./gradlew :app:connectedDebugAndroidTest
|
|
|
|
- name: (Fail-only) upload test report
|
|
if: failure()
|
|
uses: actions/upload-artifact@27bce4eee761b5bc643f46a8dfb41b430c8d05f6
|
|
with:
|
|
name: Test report
|
|
path: app/build/reports
|