diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 5ba02db7..07f2edaa 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -11,6 +11,19 @@ on: jobs: + test: + 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: Test with Maven + run: mvn test + build: runs-on: ubuntu-latest