Skip to content

Merge pull request #12 from soundvibe/gpg-update #17

Merge pull request #12 from soundvibe/gpg-update

Merge pull request #12 from soundvibe/gpg-update #17

Workflow file for this run

name: Build and run tests
on: [push]
jobs:
compile:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 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