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'
|
2022-09-10 10:30:53 -04:00
|
|
|
- 'i18n/src/main/res/**/strings.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
|
2022-04-13 18:34:33 -04:00
|
|
|
uses: actions/checkout@v3
|
2021-08-15 11:07:27 -04:00
|
|
|
|
|
|
|
- name: Validate Gradle Wrapper
|
|
|
|
uses: gradle/wrapper-validation-action@v1
|
|
|
|
|
2022-04-13 18:34:33 -04:00
|
|
|
- name: Dependency Review
|
2022-11-13 10:38:15 -05:00
|
|
|
uses: actions/dependency-review-action@v3
|
2022-04-13 18:34:33 -04:00
|
|
|
|
2021-08-15 11:07:27 -04:00
|
|
|
- name: Set up JDK 11
|
2022-05-10 17:53:19 -04:00
|
|
|
uses: actions/setup-java@v3
|
2021-08-15 11:07:27 -04:00
|
|
|
with:
|
|
|
|
java-version: 11
|
2022-05-10 17:53:19 -04:00
|
|
|
distribution: adopt
|
2021-08-15 11:07:27 -04:00
|
|
|
|
2022-05-19 13:44:13 -04:00
|
|
|
- name: Build app and run unit tests
|
2021-11-28 19:08:42 -05:00
|
|
|
uses: gradle/gradle-command-action@v2
|
2021-08-15 11:07:27 -04:00
|
|
|
with:
|
2023-01-18 22:33:56 -05:00
|
|
|
arguments: lintKotlin assembleStandardRelease testStandardReleaseUnitTest
|