2021-08-15 17:07:27 +02:00
|
|
|
name: PR build check
|
|
|
|
on:
|
|
|
|
pull_request:
|
2021-10-13 15:29:07 +02:00
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
2022-09-10 16:30:53 +02:00
|
|
|
- 'i18n/src/main/res/**/strings.xml'
|
2021-08-15 17:07:27 +02:00
|
|
|
|
2022-08-11 04:51:01 +02:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2022-04-14 00:34:33 +02:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2021-08-15 17:07:27 +02:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Build app
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Clone repo
|
2022-04-14 00:34:33 +02:00
|
|
|
uses: actions/checkout@v3
|
2021-08-15 17:07:27 +02:00
|
|
|
|
|
|
|
- name: Validate Gradle Wrapper
|
|
|
|
uses: gradle/wrapper-validation-action@v1
|
|
|
|
|
2022-04-14 00:34:33 +02:00
|
|
|
- name: Dependency Review
|
2022-11-13 16:38:15 +01:00
|
|
|
uses: actions/dependency-review-action@v3
|
2022-04-14 00:34:33 +02:00
|
|
|
|
2023-04-17 00:02:24 +02:00
|
|
|
- name: Set up JDK
|
2022-05-10 23:53:19 +02:00
|
|
|
uses: actions/setup-java@v3
|
2021-08-15 17:07:27 +02:00
|
|
|
with:
|
2023-04-17 00:02:24 +02:00
|
|
|
java-version: 17
|
2022-05-10 23:53:19 +02:00
|
|
|
distribution: adopt
|
2021-08-15 17:07:27 +02:00
|
|
|
|
2022-05-19 19:44:13 +02:00
|
|
|
- name: Build app and run unit tests
|
2021-11-29 01:08:42 +01:00
|
|
|
uses: gradle/gradle-command-action@v2
|
2021-08-15 17:07:27 +02:00
|
|
|
with:
|
2023-01-19 04:33:56 +01:00
|
|
|
arguments: lintKotlin assembleStandardRelease testStandardReleaseUnitTest
|