Skip to content

Updating workflows to enable releasing #93

Updating workflows to enable releasing

Updating workflows to enable releasing #93

Workflow file for this run

# Smoke compile on PR
name: Java CI with Maven
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: gradle
- name: Build with Maven
run: ./gradlew assemble