Skip to content

Do not error for INDIVIDUAL reports for multiple SDEs. Centralize the logic for converting report types to eval types. #947

Do not error for INDIVIDUAL reports for multiple SDEs. Centralize the logic for converting report types to eval types.

Do not error for INDIVIDUAL reports for multiple SDEs. Centralize the logic for converting report types to eval types. #947

Workflow file for this run

name: Format Check
on:
pull_request:
types: [opened, reopened, synchronize]
jobs:
spotless:
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
- name: spotless:check
run: ./mvnw spotless:check
- uses: mshick/add-pr-comment@v2
if: always()
with:
message-success: |
Formatting check succeeded!
message-failure: |
**This Pull Request has failed the formatting check**
Please run `mvnw spotless:apply` or `mvnw clean install -DskipTests` to fix the formatting issues.