Skip to content

[pull] develop from datengaertnerei:develop #465

[pull] develop from datengaertnerei:develop

[pull] develop from datengaertnerei:develop #465

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: maven-merge-check
on:
pull_request:
permissions: read-all
jobs:
build:
name: merge status check
runs-on: ubuntu-latest
permissions:
# required for all workflows
security-events: write
steps:
- name: Harden Runner
uses: step-security/harden-runner@cb605e52c26070c328afc4562f0b4ada7618a84e
with:
disable-sudo: true
egress-policy: audit #outbound hosts constantly subject to change by action providers
- uses: actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2
- name: Set up JDK 21
uses: actions/setup-java@28b532bcb39ad928b00bc3cbce25c94d11654854
with:
java-version: 21
distribution: 'temurin'
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@f89b8a7d5239ba6d1a0f243ead94ea9ca5775ae1
with:
languages: javascript, python, java
- name: Build with Maven
run: |
export OSM_IMPORT_FILE=https://github.com/datengaertnerei/test-data-service/raw/develop/data/osm-small.pbf
./mvnw -B test --file pom.xml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@f89b8a7d5239ba6d1a0f243ead94ea9ca5775ae1