2020-12-10 11:25:31 +00:00
|
|
|
on: [pull_request_target]
|
2019-12-15 21:49:18 +00:00
|
|
|
|
|
|
|
name: Check pull request
|
2019-10-02 05:14:16 +00:00
|
|
|
jobs:
|
2019-12-15 21:49:18 +00:00
|
|
|
test-pr:
|
2020-04-16 18:54:13 +00:00
|
|
|
runs-on: macos-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2020-06-23 13:21:47 +00:00
|
|
|
api-level: [23, 29]
|
2019-10-02 05:14:16 +00:00
|
|
|
steps:
|
2019-12-31 15:27:38 +00:00
|
|
|
|
2020-12-07 07:41:49 +00:00
|
|
|
- name: Auto-cancel redundant workflow run
|
|
|
|
uses: technote-space/auto-cancel-redundant-workflow@f9dfa1c127a520e4d71b92892850f861fb861206
|
|
|
|
|
2020-05-23 11:04:10 +00:00
|
|
|
- name: Check if relevant files have changed
|
2020-10-23 09:33:45 +00:00
|
|
|
uses: actions/github-script@626af12fe9a53dc2972b48385e7fe7dec79145c9
|
2020-05-23 11:04:10 +00:00
|
|
|
id: service-changed
|
|
|
|
with:
|
|
|
|
result-encoding: string
|
|
|
|
script: |
|
|
|
|
const result = await github.pulls.listFiles({
|
|
|
|
owner: context.payload.repository.owner.login,
|
|
|
|
repo: context.payload.repository.name,
|
|
|
|
pull_number: context.payload.number,
|
|
|
|
per_page: 100
|
|
|
|
})
|
2020-10-02 13:12:14 +00:00
|
|
|
const shouldRun = result.data.filter(f => !f.filename.endsWith(".md") || !f.filename.endsWith(".txt") || !f.filename.startsWith("contrib/") || !f.filename.endsWith(".yml")).length > 0
|
|
|
|
console.log(shouldRun)
|
|
|
|
return shouldRun
|
2020-05-23 11:04:10 +00:00
|
|
|
|
|
|
|
- name: Checkout repository
|
|
|
|
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
2020-12-07 07:47:16 +00:00
|
|
|
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
|
2019-12-31 15:27:38 +00:00
|
|
|
|
2020-09-21 08:47:06 +00:00
|
|
|
- name: Copy CI gradle.properties
|
|
|
|
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
|
|
|
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
|
|
|
|
|
2020-04-16 18:54:13 +00:00
|
|
|
- name: Run unit tests
|
2020-05-23 11:04:10 +00:00
|
|
|
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
2020-10-23 09:33:45 +00:00
|
|
|
uses: burrunan/gradle-cache-action@03c71a8ba93d670980695505f48f49daf43704a6
|
2020-10-01 08:44:36 +00:00
|
|
|
with:
|
2020-10-01 08:45:20 +00:00
|
|
|
arguments: apiCheck testFreeDebug lintFreeDebug
|
2019-12-31 15:27:38 +00:00
|
|
|
|
2020-09-16 19:30:21 +00:00
|
|
|
- name: Run instrumentation tests
|
|
|
|
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
2020-10-23 09:33:45 +00:00
|
|
|
uses: reactivecircus/android-emulator-runner@07b0366e7b93d87f3d00b3e78d9033f04009b347
|
2020-07-24 09:03:55 +00:00
|
|
|
with:
|
|
|
|
api-level: ${{ matrix.api-level }}
|
|
|
|
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:connectedFreeDebugAndroidTest
|
|
|
|
|
2020-07-26 11:18:03 +00:00
|
|
|
- name: (Fail-only) upload test report
|
|
|
|
if: failure()
|
2020-12-07 07:53:38 +00:00
|
|
|
uses: actions/upload-artifact@726a6dcd0199f578459862705eed35cda05af50b
|
2020-07-26 11:18:03 +00:00
|
|
|
with:
|
|
|
|
name: Test report
|
|
|
|
path: app/build/reports
|