Skip to content
This repository has been archived by the owner on Jan 20, 2024. It is now read-only.

Github: add github actions workflow #1

Github: add github actions workflow

Github: add github actions workflow #1

name: Build Gradle project
on:
push:
jobs:
build-gradle-project:
runs-on: ubuntu-latest
steps:
- name: Checkout project sources
uses: actions/checkout@v3
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Run build with Gradle Wrapper
run: ./gradlew build