Skip to content

profiling: add tool path settings in project properity for profiling #468

profiling: add tool path settings in project properity for profiling

profiling: add tool path settings in project properity for profiling #468

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: License check
on:
push:
branches:
- 'master'
- 'tycho-*'
pull_request:
branches:
- 'master'
- 'tycho-*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'adopt'
- name: Cache local Maven repository
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: License check
run: |
mvn -U -V -e -B -ntp org.eclipse.dash:license-tool-plugin:license-check --file pom.xml