64 lines
1.9 KiB
YAML
64 lines
1.9 KiB
YAML
name: PR build check
|
|
on:
|
|
# push:
|
|
# branches:
|
|
# - develop
|
|
# paths-ignore:
|
|
# - '**.md'
|
|
pull_request:
|
|
paths-ignore:
|
|
- '**.md'
|
|
# Dispatch or Manual triggers
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
|
|
cancel-in-progress: true
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build:
|
|
name: Build app
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Clone repo
|
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
|
|
|
- name: Validate Gradle Wrapper
|
|
uses: gradle/actions/wrapper-validation@dbbdc275be76ac10734476cc723d82dfe7ec6eda # v3.4.2
|
|
|
|
- name: Dependency Review
|
|
uses: actions/dependency-review-action@72eb03d02c7872a771aacd928f3123ac62ad6d3a # v4.3.3
|
|
|
|
- name: Setup Android SDK
|
|
run: |
|
|
${ANDROID_SDK_ROOT}/cmdline-tools/latest/bin/sdkmanager "build-tools;29.0.3"
|
|
|
|
- name: Set up JDK
|
|
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1
|
|
with:
|
|
java-version: 17
|
|
distribution: temurin
|
|
|
|
- name: Write google-services.json
|
|
uses: DamianReeves/write-file-action@6929a9a6d1807689191dcc8bbe62b54d70a32b42 # v1.3
|
|
with:
|
|
path: app/google-services.json
|
|
contents: ${{ secrets.GOOGLE_SERVICES_JSON }}
|
|
write-mode: overwrite
|
|
|
|
- name: Write client_secrets.json
|
|
uses: DamianReeves/write-file-action@6929a9a6d1807689191dcc8bbe62b54d70a32b42 # v1.3
|
|
with:
|
|
path: app/src/main/assets/client_secrets.json
|
|
contents: ${{ secrets.GOOGLE_CLIENT_SECRETS_JSON }}
|
|
write-mode: overwrite
|
|
|
|
- name: Set up gradle
|
|
uses: gradle/actions/setup-gradle@dbbdc275be76ac10734476cc723d82dfe7ec6eda # v3.4.2
|
|
|
|
- name: Build app and run unit tests
|
|
run: ./gradlew assembleStandardPreview testStandardPreviewUnitTest testReleaseUnitTest --stacktrace
|