We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e753690 commit 83f3903Copy full SHA for 83f3903
.circleci/config.yml
.github/workflows/build.yaml
@@ -0,0 +1,23 @@
1
+name: Build
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ - name: Set up JDK
15
+ uses: actions/setup-java@v4
16
+ with:
17
+ java-version: 21
18
+ distribution: temurin
19
+ cache: 'maven'
20
+ - name: Run the Maven verify phase
21
+ run: |
22
+ ./mvnw --batch-mode clean install
23
+ ./mvnw javadoc:jar
0 commit comments