Skip to content

[STAD-576] Upgrade Gradle to 8 and AGP to 8 #31

[STAD-576] Upgrade Gradle to 8 and AGP to 8

[STAD-576] Upgrade Gradle to 8 and AGP to 8 #31

Workflow file for this run

# This workflow ensures the building step works
#
# @author Armin Schnabel
# @version 1.0.1
# @since 1.0.0
name: Gradle Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '11'
- name: Add gradle.properties
run: |
cp gradle.properties.template gradle.properties
- name: Build with Gradle
run: ./gradlew build