Skip to content

Add Missing License Headers #231

Add Missing License Headers

Add Missing License Headers #231

Workflow file for this run

name: JGrapht Pull Request build
on:
pull_request:
types: [opened, synchronize, reopened]
branches:
- master
jobs:
build:
strategy:
fail-fast: false
matrix:
os:
- name: Windows
tag: windows-latest
- name: macOS
tag: macos-latest
- name: Ubuntu
tag: ubuntu-latest
name: Build (${{ matrix.os.name }})
runs-on: ${{ matrix.os.tag }}
steps:
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: 11
distribution: 'temurin'
cache: 'maven'
- name: Build with Maven
shell: bash
run: |
set -e
mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V && mvn verify -B && mvn javadoc:aggregate && mvn checkstyle:check -P checkstyle