Skip to content

Merge pull request #16 from sullis/setup-java-v4 #107

Merge pull request #16 from sullis/setup-java-v4

Merge pull request #16 from sullis/setup-java-v4 #107

Workflow file for this run

# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Maven Verify Phase
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 8
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'temurin'
cache: maven
- name: Run Maven Verify Phase
run: mvn --batch-mode verify --file pom.xml