144b120692
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
74 lines
2.8 KiB
YAML
74 lines
2.8 KiB
YAML
on: [pull_request]
|
|
|
|
name: Check pull request
|
|
jobs:
|
|
test-pr:
|
|
runs-on: macos-latest
|
|
strategy:
|
|
matrix:
|
|
api-level: [23, 29]
|
|
steps:
|
|
|
|
#- name: Auto-cancel redundant workflow run
|
|
# uses: technote-space/auto-cancel-redundant-workflow@f9dfa1c127a520e4d71b92892850f861fb861206
|
|
|
|
- name: Check if relevant files have changed
|
|
uses: actions/github-script@a3e7071a34d7e1f219a8a4de9a5e0a34d1ee1293
|
|
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
|
|
})
|
|
const files = result.data.filter(file =>
|
|
// We wanna run this if the PR workflow is modified
|
|
(file.filename.endsWith(".yml") && !file.filename.endsWith("pull_request.yml")) ||
|
|
// Changes in Markdown files don't need tests
|
|
file.filename.endsWith(".md") ||
|
|
// Changes to fastlane metadata aren't covered by tests
|
|
file.filename.startsWith("fastlane/")
|
|
)
|
|
// If filtered file count and source file count is equal, it means all files
|
|
// in this PR are skip-worthy.
|
|
return files.length != result.data.length
|
|
|
|
- uses: actions/setup-java@d202f5dbf7256730fb690ec59f6381650114feb2
|
|
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
|
with:
|
|
java-version: '11'
|
|
|
|
- name: Checkout repository
|
|
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
|
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
|
|
#with:
|
|
# ref: refs/pull/${{ github.event.pull_request.number }}/merge
|
|
|
|
- name: Copy CI gradle.properties
|
|
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
|
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
|
|
|
|
- name: Run unit tests
|
|
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
|
uses: burrunan/gradle-cache-action@03c71a8ba93d670980695505f48f49daf43704a6
|
|
with:
|
|
arguments: apiCheck testFreeDebug lintFreeDebug ktfmtCheck
|
|
|
|
- name: Run instrumentation tests
|
|
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
|
uses: reactivecircus/android-emulator-runner@599839e4285455fff52cd8e3614575e02f1b673f
|
|
with:
|
|
api-level: ${{ matrix.api-level }}
|
|
target: default
|
|
script: |
|
|
./gradlew :app:connectedFreeDebugAndroidTest
|
|
|
|
- name: (Fail-only) upload test report
|
|
if: failure()
|
|
uses: actions/upload-artifact@e448a9b857ee2131e752b06002bf0e093c65e571
|
|
with:
|
|
name: Test report
|
|
path: app/build/reports
|