Update jcommander dependency and delete unused bcprov-jdk15on dependency #125
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: PR QA | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| build: | |
| name: Checkout and Build | |
| runs-on: ubuntu-latest | |
| continue-on-error: true | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| java-version: [8, 11, 17, 21] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: JDK setup | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: ${{ matrix.java-version }} | |
| distribution: 'temurin' | |
| cache: maven | |
| - name: Build with Maven | |
| run: mvn --batch-mode --update-snapshots verify | |
| coverage: | |
| name: Quality Assurance | |
| runs-on: ubuntu-latest | |
| needs: [ build ] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Codacy analysis reporting | |
| uses: codacy/codacy-analysis-cli-action@master |