#809: Enhance uninstall with --force to remove from the software repo #4136
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: CI Build PR | |
| on: pull_request | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| with: | |
| submodules: recursive | |
| - name: Set up JDK | |
| uses: actions/setup-java@v1 | |
| with: | |
| java-version: '21' | |
| - name: Build project with Maven | |
| run: mvn -B -ntp -Dstyle.color=always install | |
| - name: Coveralls GitHub Action | |
| uses: coverallsapp/github-action@v2.2.3 | |
| with: | |
| fail-on-error: false |