Skip to content

Commit

Permalink
#12 Adds GitHub Action.
Browse files Browse the repository at this point in the history
  • Loading branch information
paulhoadley committed Mar 31, 2024
1 parent ee56212 commit 8231d78
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up JDK 21
uses: actions/setup-java@v1
with:
java-version: 21
- name: Build with Maven
run: mvn --batch-mode --update-snapshots verify

0 comments on commit 8231d78

Please sign in to comment.