Skip to content

Commit

Permalink
Add Github pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
sgdc3 authored Apr 10, 2022
1 parent 4643900 commit 1aebd5e
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Java CI

on: [push]

jobs:
build_and_test:
strategy:
matrix:
jdkversion: [8, 11, 17]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.jdkversion }}
cache: 'maven'
- name: Build with Maven
run: mvn -V -B clean package --file pom.xml

0 comments on commit 1aebd5e

Please sign in to comment.