Skip to content

Commit

Permalink
Add GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
onigoetz committed Feb 7, 2024
1 parent e93e01e commit 189e0f3
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/java.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Java

on: [push]

jobs:
build:
strategy:
matrix:
os: [ubuntu-latest]
java-version: [8, 11, 17]
#include:
#- os: macos-latest
# node-version: 18.x
#- os: macos-14
# node-version: 18.x

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java-version }}
distribution: 'zulu'
- run: mvn --batch-mode verify

0 comments on commit 189e0f3

Please sign in to comment.