Skip to content

Commit ff57f44

Browse files
Merge pull request #1656 from MartinuzziFrancesco/patch-1
Update Downstream.yml
2 parents 4546c8a + 5203e38 commit ff57f44

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/Downstream.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
# force it to use this PR's version of the package
4646
Pkg.develop(PackageSpec(path=".")) # resolver may fail with main deps
4747
Pkg.update()
48-
Pkg.test() # resolver may fail with test time deps
48+
Pkg.test(coverage=true) # resolver may fail with test time deps
4949
catch err
5050
err isa Pkg.Resolve.ResolverError || rethrow()
5151
# If we can't resolve that means this is incompatible by SemVer and this is fine
@@ -54,3 +54,7 @@ jobs:
5454
@info "Not compatible with this release. No problem." exception=err
5555
exit(0) # Exit immediately, as a success
5656
end
57+
- uses: julia-actions/julia-processcoverage@v1
58+
- uses: codecov/codecov-action@v1
59+
with:
60+
file: lcov.info

0 commit comments

Comments
 (0)