Voeg een max direct memory size meter toe. #96
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: build pull request | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cancel previous Action | |
uses: styfle/[email protected] | |
- uses: getong/[email protected] | |
with: | |
elasticsearch version: '7.6.1' | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
- name: Build with Maven | |
run: mvn -ntp -fae -DskipITs=false -Dinteg.cluster.name=docker-elasticsearch -B package | |
- name: Publish Unit Test Results | |
uses: EnricoMi/[email protected] | |
if: always() | |
with: | |
junit_files: "**/target/surefire-reports/*.xml" |