Skip to content

Add workflow to run Gradle tests #2

Add workflow to run Gradle tests

Add workflow to run Gradle tests #2

Workflow file for this run

name: Run Gradle Tests
on:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: corretto
- name: Run Gradle test
run: ./gradlew test