Added support for the --target parameter in the docker build phase #527
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: Test | |
| env: | |
| MAVEN_ARGS: -B -C -V -ntp -Dhttp.keepAlive=false -e | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| jobs: | |
| build: | |
| name: Linux Java ${{ matrix.java }} Maven Wrapper | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| java: [11] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Setup Java | |
| uses: actions/setup-java@v1 | |
| with: | |
| java-version: ${{ matrix.java }} | |
| - name: Test Project | |
| run: | | |
| ./mvnw ${MAVEN_ARGS} install -Pjacoco | |
| bash <(curl -s https://codecov.io/bash) |