2023-02-13 10:39:58 +00:00
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
merge_group:
|
2019-12-15 21:49:18 +00:00
|
|
|
|
|
|
|
name: Check pull request
|
2021-09-29 12:00:32 +00:00
|
|
|
|
|
|
|
concurrency:
|
2023-12-20 05:18:57 +00:00
|
|
|
group: ${{ github.head_ref || github.ref_name }}
|
2021-09-29 12:00:32 +00:00
|
|
|
cancel-in-progress: true
|
|
|
|
|
2022-02-22 09:03:03 +00:00
|
|
|
env:
|
|
|
|
SENTRY_DSN: 'https://public_key@example.com/project_id'
|
|
|
|
|
2019-10-02 05:14:16 +00:00
|
|
|
jobs:
|
2021-12-07 10:06:41 +00:00
|
|
|
check-codestyle:
|
2021-05-22 13:17:09 +00:00
|
|
|
runs-on: ubuntu-latest
|
2019-10-02 05:14:16 +00:00
|
|
|
steps:
|
2024-04-13 09:15:08 +00:00
|
|
|
- name: Setup build environment
|
|
|
|
uses: android-password-store/android-password-store/.github/reusable-workflows/setup-gradle@develop
|
2022-10-29 02:56:46 +00:00
|
|
|
|
|
|
|
- name: Check codestyle
|
2024-04-13 09:15:08 +00:00
|
|
|
shell: bash
|
|
|
|
run: ./gradlew ktfmtCheck
|
2022-10-29 02:56:46 +00:00
|
|
|
|
|
|
|
- name: Upload Kotlin build report
|
|
|
|
if: "${{ always() }}"
|
2024-08-02 14:39:15 +00:00
|
|
|
uses: actions/upload-artifact@89ef406dd8d7e03cfd12d9e0a4a378f454709029 # v4.3.5
|
2022-10-29 02:56:46 +00:00
|
|
|
with:
|
2023-12-15 04:30:37 +00:00
|
|
|
name: Build report (check-codestyle)
|
2022-10-29 02:56:46 +00:00
|
|
|
path: build/reports/kotlin-build/
|
2021-12-07 10:06:41 +00:00
|
|
|
|
|
|
|
unit-tests:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-04-13 09:15:08 +00:00
|
|
|
- name: Setup build environment
|
|
|
|
uses: android-password-store/android-password-store/.github/reusable-workflows/setup-gradle@develop
|
2022-10-29 02:56:46 +00:00
|
|
|
|
|
|
|
- name: Run unit tests
|
2024-04-13 09:15:08 +00:00
|
|
|
shell: bash
|
|
|
|
run: ./gradlew test -PslimTests
|
2022-10-29 02:56:46 +00:00
|
|
|
|
|
|
|
- name: (Fail-only) Upload test report
|
|
|
|
if: "${{ failure() }}"
|
2024-08-02 14:39:15 +00:00
|
|
|
uses: actions/upload-artifact@89ef406dd8d7e03cfd12d9e0a4a378f454709029 # v4.3.5
|
2022-10-29 02:56:46 +00:00
|
|
|
with:
|
2023-12-15 04:30:37 +00:00
|
|
|
name: Test report (unit-tests)
|
2020-07-26 11:18:03 +00:00
|
|
|
path: app/build/reports
|
2021-12-07 10:06:41 +00:00
|
|
|
|
2022-10-29 02:56:46 +00:00
|
|
|
- name: Upload Kotlin build report
|
|
|
|
if: "${{ always() }}"
|
2024-08-02 14:39:15 +00:00
|
|
|
uses: actions/upload-artifact@89ef406dd8d7e03cfd12d9e0a4a378f454709029 # v4.3.5
|
2022-10-29 02:56:46 +00:00
|
|
|
with:
|
2023-12-15 04:30:37 +00:00
|
|
|
name: Build report (unit-tests)
|
2022-10-29 02:56:46 +00:00
|
|
|
path: build/reports/kotlin-build/
|
2022-06-10 17:57:56 +00:00
|
|
|
|
2021-12-07 10:06:41 +00:00
|
|
|
build-apks:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-04-13 09:15:08 +00:00
|
|
|
- name: Setup build environment
|
|
|
|
uses: android-password-store/android-password-store/.github/reusable-workflows/setup-gradle@develop
|
2022-10-29 02:56:46 +00:00
|
|
|
|
|
|
|
- name: Build debug APKs
|
2024-04-13 09:15:08 +00:00
|
|
|
shell: bash
|
|
|
|
run: ./gradlew assembleFreeDebug assembleNonFreeDebug assembleNonFreeRelease
|
2022-10-29 02:56:46 +00:00
|
|
|
|
|
|
|
- name: Upload Kotlin build report
|
|
|
|
if: "${{ always() }}"
|
2024-08-02 14:39:15 +00:00
|
|
|
uses: actions/upload-artifact@89ef406dd8d7e03cfd12d9e0a4a378f454709029 # v4.3.5
|
2022-10-29 02:56:46 +00:00
|
|
|
with:
|
2023-12-15 04:30:37 +00:00
|
|
|
name: Build report (build-apks)
|
2022-10-29 02:56:46 +00:00
|
|
|
path: build/reports/kotlin-build/
|
2021-12-07 10:06:41 +00:00
|
|
|
|
|
|
|
check-api:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-04-13 09:15:08 +00:00
|
|
|
- name: Setup build environment
|
|
|
|
uses: android-password-store/android-password-store/.github/reusable-workflows/setup-gradle@develop
|
2022-10-29 02:56:46 +00:00
|
|
|
|
|
|
|
- name: Check library API
|
2024-04-13 09:15:08 +00:00
|
|
|
shell: bash
|
|
|
|
run: ./gradlew metalavaCheckCompatibilityRelease
|
2022-10-29 02:56:46 +00:00
|
|
|
|
|
|
|
- name: Upload Kotlin build report
|
|
|
|
if: "${{ always() }}"
|
2024-08-02 14:39:15 +00:00
|
|
|
uses: actions/upload-artifact@89ef406dd8d7e03cfd12d9e0a4a378f454709029 # v4.3.5
|
2022-10-29 02:56:46 +00:00
|
|
|
with:
|
2023-12-15 04:30:37 +00:00
|
|
|
name: Build report (check-api)
|
2022-10-29 02:56:46 +00:00
|
|
|
path: build/reports/kotlin-build/
|
2022-07-17 08:37:50 +00:00
|
|
|
|
2023-04-27 09:12:11 +00:00
|
|
|
lint:
|
2022-07-17 08:37:50 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-04-13 09:15:08 +00:00
|
|
|
- name: Setup build environment
|
|
|
|
uses: android-password-store/android-password-store/.github/reusable-workflows/setup-gradle@develop
|
2022-07-17 08:37:50 +00:00
|
|
|
|
2023-04-27 09:12:11 +00:00
|
|
|
- name: Run Lint
|
2024-04-13 09:15:08 +00:00
|
|
|
shell: bash
|
|
|
|
run: ./gradlew lint
|
2022-07-17 08:37:50 +00:00
|
|
|
|
|
|
|
- name: Upload Kotlin build report
|
|
|
|
if: "${{ always() }}"
|
2024-08-02 14:39:15 +00:00
|
|
|
uses: actions/upload-artifact@89ef406dd8d7e03cfd12d9e0a4a378f454709029 # v4.3.5
|
2022-07-17 08:37:50 +00:00
|
|
|
with:
|
2023-12-15 04:30:37 +00:00
|
|
|
name: Build report (lint)
|
2022-07-17 08:37:50 +00:00
|
|
|
path: build/reports/kotlin-build/
|