use github actions

This commit is contained in:
Athou
2022-01-02 22:16:07 +01:00
parent 3977bb2a0b
commit 1558c0a62f
2 changed files with 17 additions and 3 deletions

17
.github/workflows/build.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 11
uses: actions/setup-java@v2
with:
java-version: "11"
distribution: "adopt"
- name: Build with Maven
run: mvn --batch-mode --update-snapshots verify

View File

@@ -1,3 +0,0 @@
language: java
jdk:
- openjdk8