This is an automated email from the ASF dual-hosted git repository. dcromberge pushed a commit to branch Memory2-doc-fixes-gh-actions in repository https://gitbox.apache.org/repos/asf/datasketches-java.git
commit 88e85577d085169a296984f821ef138fd00347f8 Author: David Cromberge <[email protected]> AuthorDate: Fri Sep 17 11:17:40 2021 +0100 Only run coverage in jdk 8 --- .github/workflows/maven.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index eed1d92..e6756f3 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -56,7 +56,7 @@ jobs: --toolchains .github/workflows/.toolchains.xml - name: Test & Report - if: ${{ success() }} + if: ${{ matrix.jdk == 8 && success() }} run: > mvn verify coveralls:report -B -V -q -Dcoveralls-repo-token=${repo_token} --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
