Skip to content

Build project with Maven #509

Build project with Maven

Build project with Maven #509

Workflow file for this run

name: Build project with Maven
on:
pull_request:
push:
branches-ignore: [ master ]
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: zulu
cache: maven
- name: Run Maven
run: mvn -B clean install com.mycila:license-maven-plugin:check