prepare release #209
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Android CI | |
on: [push, pull_request] | |
jobs: | |
check_commit_hooks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Run pre-commit check | |
uses: pre-commit/[email protected] | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Build with Gradle | |
run: ./gradlew build | |
- name: Publish test report | |
uses: mikepenz/action-junit-report@v3 | |
if: always() | |
with: | |
report_paths: app/build/test-results/testDebugUnitTest/TEST-*.xml | |
check_name: JUnit Test Report | |
- name: Check notice file | |
run: ./gradlew checkUpdatedLicenseFile | |
- name: Archive debug apk | |
uses: actions/upload-artifact@v3 | |
with: | |
name: debug-apk | |
path: app/build/outputs/apk/debug/app-debug.apk | |
- name: Archive reports | |
uses: actions/upload-artifact@v3 | |
with: | |
name: reports | |
path: | | |
app/build/reports/licenses/*.html | |
app/build/reports/*.html |