From b90ea6a9849891b7099d77170a634fdd5be837d2 Mon Sep 17 00:00:00 2001 From: Francesco Martinuzzi Date: Sun, 19 Jun 2022 15:10:39 +0200 Subject: [PATCH 1/2] Update Downstream.yml --- .github/workflows/Downstream.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/Downstream.yml b/.github/workflows/Downstream.yml index 415ddf8..ef81415 100644 --- a/.github/workflows/Downstream.yml +++ b/.github/workflows/Downstream.yml @@ -48,4 +48,8 @@ jobs: # Mistakenly introducing a breaking change, as we have intentionally made one @info "Not compatible with this release. No problem." exception=err exit(0) # Exit immediately, as a success - end + end + - uses: julia-actions/julia-processcoverage@v1 + - uses: codecov/codecov-action@v1 + with: + file: lcov.info From 2482ac37f544402c911d118ac48ad02951141954 Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Sun, 19 Jun 2022 11:34:25 -0400 Subject: [PATCH 2/2] Update Downstream.yml --- .github/workflows/Downstream.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/Downstream.yml b/.github/workflows/Downstream.yml index ef81415..1a5098a 100644 --- a/.github/workflows/Downstream.yml +++ b/.github/workflows/Downstream.yml @@ -40,7 +40,7 @@ jobs: # force it to use this PR's version of the package Pkg.develop(PackageSpec(path=".")) # resolver may fail with main deps Pkg.update() - Pkg.test() # resolver may fail with test time deps + Pkg.test(coverage=true) # resolver may fail with test time deps catch err err isa Pkg.Resolve.ResolverError || rethrow() # If we can't resolve that means this is incompatible by SemVer and this is fine