Uplift to Android SDK 34 (Android 14) #90
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
# Builds the project | |
name: Android Feature Branch CI | |
on: | |
push: | |
branches: | |
- '*' | |
- '!master' | |
jobs: | |
build: | |
name: Build the project | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout project | |
uses: actions/checkout@v3 | |
- name: Set up JDK 1.17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
- name: Lint Android | |
run: ./gradlew lint | |
- name: Build with Gradle | |
run: ./gradlew build |