APP-675 New params for report API #1517
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: Check Style | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - "apps/**" | |
| - "!apps/modernization-ui/**" | |
| - "!apps/report-execution/**" | |
| - "libs/**" | |
| - "build.gradle" | |
| - "settings.gradle" | |
| - "gradle/**" | |
| - ".github/workflows/verify-formatting.yaml" | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| pipeline: | |
| name: Java | |
| runs-on: ubuntu-latest | |
| permissions: | |
| id-token: write | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| # need all of the branches to do the diff | |
| fetch-depth: 0 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: 21 | |
| distribution: "zulu" # Alternative distribution options are available | |
| - name: Cache Gradle packages | |
| uses: actions/cache@v5 | |
| with: | |
| path: ~/.gradle/caches | |
| key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }} | |
| restore-keys: ${{ runner.os }}-gradle | |
| - name: Check formatting | |
| working-directory: ./ | |
| run: ./gradlew clean spotlessCheck |