From bb8cf1787eada453171545797646f6b0ad4ea2d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20Galy-Fajou?= Date: Fri, 8 Oct 2021 15:53:07 +0200 Subject: [PATCH 1/4] Try to switch to CodeCov --- .github/workflows/ci.yml | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index de70c88f4..6272e7017 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,20 +58,8 @@ jobs: GROUP: ${{ matrix.group }} - uses: julia-actions/julia-processcoverage@v1 if: matrix.version == '1' && matrix.os == 'ubuntu-latest' - - name: Coveralls parallel + - name: Send coverage to CodeCov if: matrix.version == '1' && matrix.os == 'ubuntu-latest' - uses: coverallsapp/github-action@master + uses: codecov/codecov-action@v2 with: - github-token: ${{ secrets.GITHUB_TOKEN }} - path-to-lcov: ./lcov.info - flag-name: run-${{ matrix.group }} - parallel: true - finish: - needs: test - runs-on: ubuntu-latest - steps: - - name: Send coverage - uses: coverallsapp/github-action@master - with: - github-token: ${{ secrets.github_token }} - parallel-finished: true + file: lcov.info From 67c843fcc3bd7920095eb5d1cf908a6bf7021c78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20Galy-Fajou?= Date: Mon, 25 Oct 2021 17:52:17 +0200 Subject: [PATCH 2/4] Add coompat limit to Distances --- test/Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Project.toml b/test/Project.toml index e2851871c..ab041f7f6 100644 --- a/test/Project.toml +++ b/test/Project.toml @@ -17,7 +17,7 @@ Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f" [compat] AxisArrays = "0.4.3" -Distances = "0.9, 0.10" +Distances = "0.9, 0.10.4" Documenter = "0.25, 0.26, 0.27" FiniteDifferences = "0.10.8, 0.11, 0.12" ForwardDiff = "0.10" From 2be80cba7afe4c07d4e206753dec791a8ae34df4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20Galy-Fajou?= Date: Mon, 25 Oct 2021 18:00:55 +0200 Subject: [PATCH 3/4] Second compat try --- test/Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Project.toml b/test/Project.toml index ab041f7f6..5695dc31e 100644 --- a/test/Project.toml +++ b/test/Project.toml @@ -17,7 +17,7 @@ Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f" [compat] AxisArrays = "0.4.3" -Distances = "0.9, 0.10.4" +Distances = "0.10 - 0.10.4" Documenter = "0.25, 0.26, 0.27" FiniteDifferences = "0.10.8, 0.11, 0.12" ForwardDiff = "0.10" From 234340a45923d15c656c068d9cb4174091d0d506 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20Galy-Fajou?= Date: Mon, 25 Oct 2021 21:11:47 +0200 Subject: [PATCH 4/4] Update test/Project.toml Co-authored-by: David Widmann --- test/Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Project.toml b/test/Project.toml index 5695dc31e..ef3a56dc2 100644 --- a/test/Project.toml +++ b/test/Project.toml @@ -17,7 +17,7 @@ Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f" [compat] AxisArrays = "0.4.3" -Distances = "0.10 - 0.10.4" +Distances = "= 0.10.0, = 0.10.1, = 0.10.2, = 0.10.3, = 0.10.4" Documenter = "0.25, 0.26, 0.27" FiniteDifferences = "0.10.8, 0.11, 0.12" ForwardDiff = "0.10"