Create tests.yml
This commit is contained in:
parent
24d5fa4968
commit
f6abe4d15a
1 changed files with 19 additions and 0 deletions
19
.github/workflows/tests.yml
vendored
Normal file
19
.github/workflows/tests.yml
vendored
Normal 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
|
Loading…
Reference in a new issue