2021-08-15 11:07:27 -04:00
|
|
|
name: PR build check
|
|
|
|
on:
|
|
|
|
pull_request:
|
2021-10-13 09:29:07 -04:00
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
2024-06-22 17:40:17 -04:00
|
|
|
- 'i18n/src/commonMain/moko-resources/**/strings.xml'
|
|
|
|
- 'i18n/src/commonMain/moko-resources/**/plurals.xml'
|
2021-08-15 11:07:27 -04:00
|
|
|
|
2022-08-10 22:51:01 -04:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2022-04-13 18:34:33 -04:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2021-08-15 11:07:27 -04:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Build app
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Clone repo
|
2024-06-12 16:31:28 -04:00
|
|
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
2021-08-15 11:07:27 -04:00
|
|
|
|
|
|
|
- name: Validate Gradle Wrapper
|
2024-08-27 08:02:08 -04:00
|
|
|
uses: gradle/actions/wrapper-validation@16bf8bc8fe830fa669c3c9f914d3eb147c629707 # v4.0.1
|
2021-08-15 11:07:27 -04:00
|
|
|
|
2022-04-13 18:34:33 -04:00
|
|
|
- name: Dependency Review
|
2024-07-11 18:51:55 -04:00
|
|
|
uses: actions/dependency-review-action@5a2ce3f5b92ee19cbb1541a4984c76d921601d7c # v4.3.4
|
2022-04-13 18:34:33 -04:00
|
|
|
|
2023-04-16 18:02:24 -04:00
|
|
|
- name: Set up JDK
|
2024-08-06 10:38:13 -04:00
|
|
|
uses: actions/setup-java@6a0805fcefea3d4657a47ac4c165951e33482018 # v4.2.2
|
2021-08-15 11:07:27 -04:00
|
|
|
with:
|
2023-04-16 18:02:24 -04:00
|
|
|
java-version: 17
|
2022-05-10 17:53:19 -04:00
|
|
|
distribution: adopt
|
2021-08-15 11:07:27 -04:00
|
|
|
|
2024-02-01 15:20:28 -05:00
|
|
|
- name: Set up gradle
|
2024-08-27 08:02:08 -04:00
|
|
|
uses: gradle/actions/setup-gradle@16bf8bc8fe830fa669c3c9f914d3eb147c629707 # v4.0.1
|
2024-02-01 15:20:28 -05:00
|
|
|
|
2022-05-19 13:44:13 -04:00
|
|
|
- name: Build app and run unit tests
|
2024-08-19 08:11:14 -04:00
|
|
|
run: ./gradlew spotlessCheck assembleStandardRelease testReleaseUnitTest testStandardReleaseUnitTest
|
2024-06-22 22:04:30 -04:00
|
|
|
|
|
|
|
- name: Upload APK
|
|
|
|
uses: actions/upload-artifact@v4
|
|
|
|
with:
|
|
|
|
name: arm64-v8a-${{ github.sha }}
|
|
|
|
path: app/build/outputs/apk/standard/release/app-standard-arm64-v8a-release-unsigned.apk
|
|
|
|
|
|
|
|
- name: Upload mapping
|
|
|
|
uses: actions/upload-artifact@v4
|
|
|
|
with:
|
|
|
|
name: mapping-${{ github.sha }}
|
|
|
|
path: app/build/outputs/mapping/standardRelease
|