Skip to content

Adds *real* path to caller by finding the probable path via matching … #173

Adds *real* path to caller by finding the probable path via matching …

Adds *real* path to caller by finding the probable path via matching … #173

Workflow file for this run

name: Java test
on: [push]
jobs:
java:
name: Java test
runs-on: ubuntu-latest
defaults:
run:
working-directory: java
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
- name: Cache Maven packages
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build with Maven
run: mvn -f common --batch-mode --update-snapshots verify