Skip to content

Update and rename gradle.yml to auto-build.yml #1

Update and rename gradle.yml to auto-build.yml

Update and rename gradle.yml to auto-build.yml #1

Workflow file for this run

name: auto-build
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
- name: Make gradlew executable
run: chmod +x ./gradlew
- name: Build with Gradle
run: ./gradlew build