Skip to content

updated README.md

updated README.md #186

Workflow file for this run

name: Build CI
on:
push:
branches: [ "main", "2.0.x" ]
pull_request:
branches: [ "main", "2.0.x" ]
permissions:
contents: read
jobs:
building:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'microsoft'
- name: Run chmod to make gradlew executable
run: chmod +x ./gradlew
- name: Test with Gradle
run: ./gradlew build --parallel