Skip to content

[GH-737] feat: adds a link to the latest version of process definition in deta… #1488

[GH-737] feat: adds a link to the latest version of process definition in deta…

[GH-737] feat: adds a link to the latest version of process definition in deta… #1488

Workflow file for this run

name: Build project with Maven
on:
pull_request:
schedule:
- cron: '2 2 * * 1-5' # run nightly master builds on weekdays
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Java setup
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
- name: Cache
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Run Maven
run: mvn -B clean verify com.mycila:license-maven-plugin:check