2020-02-23 20:26:57 +03:00
|
|
|
name: Android CI
|
2020-02-23 20:20:34 +03:00
|
|
|
|
2023-02-01 14:51:18 +03:00
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
branches: [ main, stable-* ]
|
2020-06-23 11:13:13 +03:00
|
|
|
|
2022-04-15 13:00:19 +03:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2020-02-23 20:20:34 +03:00
|
|
|
jobs:
|
2020-03-18 15:36:51 +03:00
|
|
|
validation:
|
|
|
|
name: Validate Gradle Wrapper
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2020-06-23 11:13:13 +03:00
|
|
|
- name: Checkout
|
2023-09-04 16:46:46 +03:00
|
|
|
uses: actions/checkout@v4
|
2020-06-23 11:13:13 +03:00
|
|
|
- name: Validate Gradle Wrapper
|
|
|
|
uses: gradle/wrapper-validation-action@v1
|
2020-03-18 15:36:51 +03:00
|
|
|
|
2021-05-25 16:28:15 +03:00
|
|
|
lint:
|
|
|
|
name: Lint
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-09-04 16:46:46 +03:00
|
|
|
uses: actions/checkout@v4
|
2021-05-25 16:28:15 +03:00
|
|
|
- name: Lint
|
2021-10-18 14:19:16 +03:00
|
|
|
run: bash ./gradlew lintDevDebug --stacktrace
|
2021-05-25 16:28:15 +03:00
|
|
|
|
2020-02-23 20:20:34 +03:00
|
|
|
test:
|
2020-06-23 11:13:13 +03:00
|
|
|
name: Unit tests
|
|
|
|
runs-on: ubuntu-latest
|
2020-02-23 20:20:34 +03:00
|
|
|
steps:
|
2020-06-23 11:13:13 +03:00
|
|
|
- name: Checkout
|
2023-09-04 16:46:46 +03:00
|
|
|
uses: actions/checkout@v4
|
2020-02-23 20:20:34 +03:00
|
|
|
- name: Unit tests
|
|
|
|
run: bash ./gradlew test --stacktrace
|
|
|
|
|
|
|
|
apk:
|
|
|
|
name: Generate APK
|
2020-06-23 11:13:13 +03:00
|
|
|
runs-on: ubuntu-latest
|
2020-02-23 20:20:34 +03:00
|
|
|
steps:
|
2020-06-23 11:13:13 +03:00
|
|
|
- name: Checkout
|
2023-09-04 16:46:46 +03:00
|
|
|
uses: actions/checkout@v4
|
2020-02-23 20:20:34 +03:00
|
|
|
- name: Build debug APK
|
2020-03-18 11:47:42 +03:00
|
|
|
run: bash ./gradlew assembleDev --stacktrace
|
2020-02-23 20:20:34 +03:00
|
|
|
- name: Upload APK
|
2022-03-04 16:15:50 +03:00
|
|
|
uses: actions/upload-artifact@v3
|
2020-02-23 20:20:34 +03:00
|
|
|
with:
|
2020-03-18 12:23:02 +03:00
|
|
|
name: app-dev-debug
|
2021-10-18 14:19:16 +03:00
|
|
|
path: app/build/outputs/apk/dev/debug/app-dev-debug.apk
|