Skip to content

Commit

Permalink
GitHub build action (#1003)
Browse files Browse the repository at this point in the history
* Added GitHub action to build

---------

Signed-off-by: dhoard <[email protected]>
  • Loading branch information
dhoard authored Oct 3, 2024
1 parent e753690 commit 83f3903
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 26 deletions.
26 changes: 0 additions & 26 deletions .circleci/config.yml

This file was deleted.

23 changes: 23 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: 21
distribution: temurin
cache: 'maven'
- name: Run the Maven verify phase
run: |
./mvnw --batch-mode clean install
./mvnw javadoc:jar

0 comments on commit 83f3903

Please sign in to comment.