music: make compat more menu #1326
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: | |
branches: [] | |
pull_request: | |
branches: [] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v3 | |
- name: Clone submodules | |
run: git submodule update --init --recursive --remote | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: gradle | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Test app with Gradle | |
run: ./gradlew app:testDebug | |
- name: Build debug APK with Gradle | |
run: ./gradlew app:packageDebug | |
- name: Upload debug APK artifact | |
uses: actions/upload-artifact@v3.1.1 | |
with: | |
name: Auxio_Canary | |
path: ./app/build/outputs/apk/debug/app-debug.apk |