Add missing javadoc on bare EventManager#create method. #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: [push, pull_request] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
java: [17, 21] | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: "temurin" | |
java-version: ${{ matrix.java }} | |
- name: Gradle Build and Test | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: build check --stacktrace --parallel | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: Artifacts | |
path: ./build/libs/ |