Skip to content

Commit

Permalink
test github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
soundvibe authored Feb 4, 2021
1 parent 23c0b47 commit 13dea01
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Build and run tests

on: [push, pull_request]

jobs:
compile:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 8, 9, 10, 11, 12, 13, 14, 15 ]
name: Java ${{ matrix.java }} run tests
steps:
- uses: actions/checkout@v2
- name: Setup java
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- run: mvn --batch-mode clean test

0 comments on commit 13dea01

Please sign in to comment.