Skip to content

Commit 83f3903

Browse files
authored
GitHub build action (#1003)
* Added GitHub action to build --------- Signed-off-by: dhoard <[email protected]>
1 parent e753690 commit 83f3903

File tree

2 files changed

+23
-26
lines changed

2 files changed

+23
-26
lines changed

.circleci/config.yml

Lines changed: 0 additions & 26 deletions
This file was deleted.

.github/workflows/build.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
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

Comments
 (0)