Skip to content

Commit

Permalink
Added a GitHub action to routinely compile it
Browse files Browse the repository at this point in the history
  • Loading branch information
egonw committed Apr 6, 2024
1 parent fb440b8 commit edd5829
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: build

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

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 8, 11, 17 ]
name: Java ${{ matrix.java }}

steps:
- uses: actions/checkout@v4
- name: Set up Java
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: ${{ matrix.java }}
- name: Build with Maven
run: mvn clean install

0 comments on commit edd5829

Please sign in to comment.