Skip to content

chore: Updated README.md with the correct link to the documentation #116

chore: Updated README.md with the correct link to the documentation

chore: Updated README.md with the correct link to the documentation #116

Workflow file for this run

name: Build Gradle project
on:
push:
branches:
- main
- develop
jobs:
build-gradle-project:
runs-on: ubuntu-latest
steps:
- name: Checkout project sources
uses: actions/checkout@v4
- name: Set up JDK 19
uses: actions/setup-java@v3
with:
java-version: '19'
distribution: 'temurin' # Or other distributions like 'adopt'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
- name: Execute Gradle build
run: ./gradlew build