Skip to content

Commit

Permalink
Github ci (backport)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelmay committed Dec 23, 2022
1 parent 2d49d3a commit 7ef0c14
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: ci
on:
push:
branches: [master,releases/1.6.x]
paths-ignore:
- "**/*.md"
- "docs/**"
pull_request:
paths-ignore:
- "**/*.md"
- "docs/**"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '8', '11', '17' ]
name: Java ${{ matrix.Java }}
steps:
- uses: actions/checkout@v3
- name: Setup java
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: ${{ matrix.java }}
cache: 'maven'
- name: Build with Maven
# See https://maven.apache.org/ref/3.8.6/maven-embedder/cli.html
run: mvn --batch-mode -V --fail-at-end --errors install

0 comments on commit 7ef0c14

Please sign in to comment.