diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 56474eab0..87da239a0 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -1,4 +1,4 @@ -name: Workflow for Codecov +name: Codecov on: [push, pull_request] jobs: run: @@ -8,14 +8,12 @@ jobs: uses: actions/checkout@v4 - name: Install dependencies run: mvn install -Pjre11 -DskipTests=true -Dmaven.javadoc.skip=true -B -V - - name: check variables - run: - echo ${{ vars.MSSQL_JDBC_TEST_CONNECTION_PROPERTIES }} - echo ${{ secrets.MSSQL_JDBC_TEST_CONNECTION_PROPERTIES }} - - name: Run tests and collect coverage + - name: Run tests env: connectionString: ${{ secrets.MSSQL_JDBC_TEST_CONNECTION_PROPERTIES }} run: mvn -Pjre11 -Dmssql_jdbc_test_connection_properties=$connectionString -DexcludedGroups=xAzureSQLDB,NTLM,xUnix,MSI,reqExternalSetup,clientCertAuth,fedAuth,kerberos,DTC -B test + - name: Code coverage report + run: mvn -Pjre11 jacoco:report - name: Upload coverage to Codecov uses: codecov/codecov-action@v4-beta env: