Skip to content

Trivial commit to get CI going #1

Trivial commit to get CI going

Trivial commit to get CI going #1

Workflow file for this run

name: Java 11 CI macOS (Apple)
on: [push,pull_request]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 11
- name: Build with Gradle
run: ./gradlew assemble
- name: Test with Gradle
run: ./gradlew test