Update AGP 9.0.0-rc03 #400
This file contains hidden or 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@v4 | |
| with: | |
| ref: ${{ github.ref }} | |
| - uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'zulu' | |
| java-version: '21' | |
| - name: Cache Gradle and wrapper | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| ~/.gradle/caches | |
| ~/.gradle/wrapper | |
| key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | |
| restore-keys: ${{ runner.os }}-gradle- | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v4 | |
| with: | |
| validate-wrappers: false | |
| - name: Grant execute permission for gradlew | |
| run: chmod +x gradlew | |
| - name: Run Gradle Build | |
| run: ./gradlew assembleDebug | |
| - name: Run unit test | |
| run: ./gradlew testDebug |