Skip to content

Commit

Permalink
#1077 Set up CI workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverlietz committed Aug 12, 2023
1 parent 9731761 commit 64bc0a7
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI

on:
push:
branches: [ "v4.x" ]
pull_request:
branches: [ "v4.x" ]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [ 8 ]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.java-version }}
- run: mvn -B package --no-transfer-progress --file pom.xml

0 comments on commit 64bc0a7

Please sign in to comment.