Skip to content

Pull in updates from integration into feature/ODD-1083-rpa-datacart #17

Pull in updates from integration into feature/ODD-1083-rpa-datacart

Pull in updates from integration into feature/ODD-1083-rpa-datacart #17

Workflow file for this run

name: source-update
on:
workflow_dispatch:
push:
branches-ignore: ['main', 'integration']
paths:
- 'java/*/src/**'
- 'java/*/pom.xml'
jobs:
buildtest:
runs-on: ubuntu-20.04
# strategy:
# matrix:
# java: [ '8' ]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Cache Maven packages
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('java/customization-api/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Set up JDK
uses: actions/setup-java@v2
with:
java-version: '8'
distribution: 'adopt'
- name: Test with Maven
run: cd java/customization-api && mvn --batch-mode test