Add entity selects and text displays in modals #1052
Workflow file for this run
This file contains hidden or 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: Pull Request Validation | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v4 | |
- name: Build and test | |
run: ./gradlew --build-cache --parallel build test | |
- name: Upload JUnit XML Test Report | |
if: ${{ !cancelled() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: junit-xml-test-report | |
path: build/test-results/test | |
- name: Upload HTML Test Report | |
if: ${{ !cancelled() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: junit-html-test-report | |
path: build/reports/tests/test | |
- name: Annotate Failed Tests | |
uses: mikepenz/action-junit-report@v5 | |
if: ${{ !cancelled() }} | |
with: | |
report_paths: '**/build/test-results/test/TEST-*.xml' | |
annotate_only: 'true' |