WildFlyBootableJarKeycloakSamlAdapterEjbHelmIT: exclude EAP #351
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: Intersmash Tests - Checkstyle | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| style-check: | |
| if: '! github.event.pull_request.draft' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: '17' | |
| distribution: 'temurin' | |
| cache: 'maven' | |
| - name: Pre-fetch required dependencies | |
| run: mvn clean install --batch-mode -pl style-config -am -DskipTests | |
| - name: Check source code formatting, file headers, etc. | |
| run: mvn spotless:check --batch-mode |