First test to create a java ci workflow

This commit is contained in:
mathias 2021-09-02 14:46:41 +02:00
parent 58f49a7c69
commit 6f57860564
No known key found for this signature in database
GPG Key ID: 8950DF62139C852A

17
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,17 @@
name: Java CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
- name: Build with Maven
run: mvn --batch-mode --update-snapshots verify