Add support for FIPS edition of BouncyCastle #25
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: Build Pull Request | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, edited, reopened] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| env: | |
| BUILD_EVENT: ${{ github.event_name }} | |
| COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} | |
| steps: | |
| - name: Setup JDK 8 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: '8' | |
| distribution: 'adopt' | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - name: Build and Test | |
| run: chmod +x gradlew && ./gradlew clean test jacocoTestReport coveralls | |
| - name: Verify Javadoc | |
| run: ./gradlew javadoc |