Skip to content

Commit

Permalink
add build check
Browse files Browse the repository at this point in the history
  • Loading branch information
zeitlinger committed Sep 27, 2024
1 parent 4ce0d15 commit 3d188e0
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Build

on: [push]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: 8
distribution: temurin
- name: Run the Maven verify phase
run: ./mvnw --batch-mode verify

0 comments on commit 3d188e0

Please sign in to comment.