Create tests.yml

This commit is contained in:
F43nd1r 2019-11-16 03:50:39 +01:00 committed by GitHub
parent 24d5fa4968
commit f6abe4d15a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

19
.github/workflows/tests.yml vendored Normal file
View file

@ -0,0 +1,19 @@
name: tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '1.8', '1.13' ]
steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Maven tests on Java ${{ matrix.java }}
run: mvn -B test