Skip to content

Add v2 and v31 trigger option to workflows #10

Add v2 and v31 trigger option to workflows

Add v2 and v31 trigger option to workflows #10

Workflow file for this run

name: Build Test PR
on:
pull_request:
branches: ["master", "v2", "v31"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 11 ]
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 --no-transfer-progress -B install --file pom.xml