You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ha...@apache.org on 2021/06/05 14:08:46 UTC

[iotdb] branch master updated: Enable coveralls check for the commit pushed into master branch (#3360)

This is an automated email from the ASF dual-hosted git repository.

haonan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/master by this push:
     new ce3f42b  Enable coveralls check for the commit pushed into master branch (#3360)
ce3f42b is described below

commit ce3f42bd506972119c0351f95f50f63aea955d86
Author: Haonan <hh...@outlook.com>
AuthorDate: Sat Jun 5 22:08:12 2021 +0800

    Enable coveralls check for the commit pushed into master branch (#3360)
---
 .github/workflows/sonar-coveralls.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/sonar-coveralls.yml b/.github/workflows/sonar-coveralls.yml
index 82ccde7..5a8d1b7 100644
--- a/.github/workflows/sonar-coveralls.yml
+++ b/.github/workflows/sonar-coveralls.yml
@@ -51,7 +51,7 @@ jobs:
         # we do not compile client-cpp for saving time, it is tested in client.yml
         run: mvn -B clean compile post-integration-test -Dtest.port.closed=true -Pcode-coverage -P '!testcontainer'
       - name: Code Coverage (Coveralls)
-        if: ${{ success() && (github.event_name == 'pull_request_target')}}
+        if: ${{ success() && (github.event_name == 'pull_request_target' || github.event_name == 'push')}}
         run: |
           mvn -B post-integration-test -Pcode-coverage -pl code-coverage
           mvn -B coveralls:report \