Skip to content

Commit 6ce0709

Browse files
Merge pull request #145 from MartinuzziFrancesco/patch-1
Update Downstream.yml
2 parents 20e62a3 + 9c000ce commit 6ce0709

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/Downstream.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
# force it to use this PR's version of the package
3939
Pkg.develop(PackageSpec(path=".")) # resolver may fail with main deps
4040
Pkg.update()
41-
Pkg.test() # resolver may fail with test time deps
41+
Pkg.test(coverage=true) # resolver may fail with test time deps
4242
catch err
4343
err isa Pkg.Resolve.ResolverError || rethrow()
4444
# If we can't resolve that means this is incompatible by SemVer and this is fine
@@ -47,3 +47,7 @@ jobs:
4747
@info "Not compatible with this release. No problem." exception=err
4848
exit(0) # Exit immediately, as a success
4949
end
50+
- uses: julia-actions/julia-processcoverage@v1
51+
- uses: codecov/codecov-action@v1
52+
with:
53+
file: lcov.info

0 commit comments

Comments
 (0)