FIPS Implementation #2
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: Fips Pull Request | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| paths: | |
| - 'fips/**' | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| tc: [ 17, 21, 25 ] | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: ./fips | |
| env: | |
| BUILD_EVENT: ${{ github.event_name }} | |
| TARGET_COMPATIBILITY: ${{ matrix.tc }} | |
| steps: | |
| - name: Set up JDK | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: 25 | |
| distribution: 'temurin' | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v5 | |
| with: | |
| gradle-version: current | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - name: Build and Test | |
| run: chmod +x gradlew && ./gradlew clean test jacocoTestReport | |
| - name: Verify Javadoc | |
| run: ./gradlew javadoc |