Migration, Kotlin enum values -> entries #179
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 build test | |
on: | |
push: | |
branches: | |
- develop | |
paths-ignore: | |
- docs/** | |
- README.md | |
- LICENSE | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.ref }} | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: '17' | |
cache: 'gradle' | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
with: | |
gradle-version: current | |
gradle-home-cache-cleanup: true | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Run Gradle Build | |
run: ./gradlew assembleDebug | |
- name: Run unit test | |
run: ./gradlew testDebug |