Bump com.google.guava:guava from 32.1.2-jre to 33.0.0-jre #2848
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: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/[email protected] | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Give permission to executable | |
run: chmod +x gradlew | |
- name: Build with gradle | |
uses: gradle/[email protected] | |
with: | |
gradle-version: nightly | |
arguments: assembleDebug | |
- name: Upload debug apk | |
uses: actions/upload-artifact@v3 | |
with: | |
name: apk-debug | |
path: app/build/outputs/apk/debug | |