This is an automated email from the ASF dual-hosted git repository. hxd pushed a commit to branch try_github_action in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit 7a02c73975e4c33b5b0d1904eed7bbbd16f85750 Author: xiangdong huang <[email protected]> AuthorDate: Tue Dec 8 00:56:15 2020 +0800 try using official coverall --- .github/workflows/coverall.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/.github/workflows/coverall.yml b/.github/workflows/coverall.yml new file mode 100644 index 0000000..4287f7b --- /dev/null +++ b/.github/workflows/coverall.yml @@ -0,0 +1,27 @@ +name: Coverall + +on: + push: + branches: + - master + - 'rel/*' + paths-ignore: + - 'docs/**' + pull_request: + branches: + - master + - 'rel/*' + - cluster_new + paths-ignore: + - 'docs/**' + +jobs: + coveralls: + runs-on: ubuntu-latest + strategy: + fail-fast: false + steps: + - name: Coveralls + uses: coverallsapp/github-action@master + with: + github-token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file
