File tree Expand file tree Collapse file tree 1 file changed +3
-7
lines changed
Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change 8383 profile : ' Oracle-23'
8484 module : ' vertx-oracle-client'
8585 runs-on : ${{ matrix.os }}
86- env :
87- PROFILE_ARG : ${{ matrix.profile && format('-P {0}', matrix.profile) || '' }}
8886 steps :
8987 - name : Checkout
9088 uses : actions/checkout@v2
@@ -93,12 +91,10 @@ jobs:
9391 with :
9492 java-version : ${{ matrix.jdk }}
9593 distribution : temurin
96- - name : Build without tests
97- run : |
98- mvn -s .github/maven-ci-settings.xml -q clean install -B $PROFILE_ARG -pl :${{ matrix.module }} -am -DskipTests
99- - name : Run tests for the target module
94+ - name : Run tests
10095 run : |
101- mvn -s .github/maven-ci-settings.xml -q verify -B $PROFILE_ARG -pl :${{ matrix.module }}
96+ PROFILE_ARG="${{ matrix.profile && format('-P {0}', matrix.profile) || '' }}"
97+ mvn -s .github/maven-ci-settings.xml -q clean verify -B $PROFILE_ARG -pl :${{ matrix.module }} -am
10298 Deploy :
10399 name : Deploy to OSSRH
104100 if : ${{ github.repository_owner == 'eclipse-vertx' && (github.event_name == 'push' || github.event_name == 'schedule') }}
You can’t perform that action at this time.
0 commit comments