Skip to content

Update README with overview and intended users sections #5

Update README with overview and intended users sections

Update README with overview and intended users sections #5

Workflow file for this run

name: Pull Request
on:
pull_request:
branches:
- master
- 2.[0-9]+.x
jobs:
pr-check:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.event.pull_request.head.ref }}-pr-check
cancel-in-progress: true
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'temurin'
- name: Run Tests
run: ./gradlew build test