Skip to content

Delegate resolving of relative URLs to Java framework #143

Delegate resolving of relative URLs to Java framework

Delegate resolving of relative URLs to Java framework #143

name: Build Test PR v1
on:
pull_request:
branches: [ "v1" ]
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
java: [ 8 ]
steps:
- uses: actions/checkout@v2
- name: Set up Java
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Cache local Maven repository
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
run: mvn -B verify --file pom.xml