Skip to content

Add the Planetiler NOTICE to the project's NOTICE file. (#920) #2636

Add the Planetiler NOTICE to the project's NOTICE file. (#920)

Add the Planetiler NOTICE to the project's NOTICE file. (#920) #2636

Workflow file for this run

name: Analyze
on:
push:
branches: [ main ]
pull_request:
types: [ opened, synchronize, reopened ]
branches: [ main ]
jobs:
lint:
name: Spotless Check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Java 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: temurin
cache: maven
- name: Run linter
run: ./mvnw spotless:check
rat:
name: Apache Rat Check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Java 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: temurin
cache: maven
- name: Run Apache Rat
run: ./mvnw -B apache-rat:check
javadoc:
name: Javadoc Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Java 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: temurin
cache: maven
- name: Build javadoc
run: ./mvnw -B install javadoc:javadoc