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 diff --git a/test/Project.toml b/test/Project.toml index e2851871c..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.9, 0.10" +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"