Skip to content

Commit

Permalink
Set up CI workflows (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverlietz committed Oct 26, 2024
1 parent b5fee08 commit d1bc568
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: CI

on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
workflow_dispatch:

jobs:
build:
strategy:
fail-fast: false
matrix:
java-version: [11, 17, 21]
os: ["ubuntu-latest", "windows-latest"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version: ${{ matrix.java-version }}
- run: mvn wrapper:wrapper --no-transfer-progress -Dmaven="3.9.9"
- run: ./mvnw -B install --fail-at-end --no-transfer-progress --file pom.xml

0 comments on commit d1bc568

Please sign in to comment.