Skip to content

Commit 5ff8670

Browse files
Merge pull request #9 from MartinuzziFrancesco/patch-1
Update Downstream.yml
2 parents 79a1a3a + 2482ac3 commit 5ff8670

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/Downstream.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,16 @@ jobs:
4040
# force it to use this PR's version of the package
4141
Pkg.develop(PackageSpec(path=".")) # resolver may fail with main deps
4242
Pkg.update()
43-
Pkg.test() # resolver may fail with test time deps
43+
Pkg.test(coverage=true) # resolver may fail with test time deps
4444
catch err
4545
err isa Pkg.Resolve.ResolverError || rethrow()
4646
# If we can't resolve that means this is incompatible by SemVer and this is fine
4747
# It means we marked this as a breaking change, so we don't need to worry about
4848
# Mistakenly introducing a breaking change, as we have intentionally made one
4949
@info "Not compatible with this release. No problem." exception=err
5050
exit(0) # Exit immediately, as a success
51-
end
51+
end
52+
- uses: julia-actions/julia-processcoverage@v1
53+
- uses: codecov/codecov-action@v1
54+
with:
55+
file: lcov.info

0 commit comments

Comments
 (0)