Skip to content

ci(deps): bump gradle/wrapper-validation-action from 1.1.0 to 2.0.0 (… #115

ci(deps): bump gradle/wrapper-validation-action from 1.1.0 to 2.0.0 (…

ci(deps): bump gradle/wrapper-validation-action from 1.1.0 to 2.0.0 (… #115

Workflow file for this run

name: Gradle CI
# Controls when the action will run.
on:
# Triggers the workflow on push and pull request events but only for the master branch
push:
branches:
- main
pull_request:
branches:
- main
# Allows to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
name: Gradle-Build
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout
uses: actions/checkout@v4
# Setup JDK
- name: Setup Java JDK
uses: actions/setup-java@v4
with:
distribution: 'microsoft'
java-version: 11
cache: 'gradle'
# Validate Gradle Wrapper
- name: Gradle Wrapper Validation
uses: gradle/wrapper-validation-action@v2.0.0
# Build
- name: Make gradlew executable
run: chmod +x ./gradlew
- name: Build with Gradle
run: ./gradlew build