Skip to content

Commit 6a678b2

Browse files
authored
include downstream coverage (#199)
1 parent b17b967 commit 6a678b2

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
@@ -44,7 +44,7 @@ jobs:
4444
# force it to use this PR's version of the package
4545
Pkg.develop(PackageSpec(path=".")) # resolver may fail with main deps
4646
Pkg.update()
47-
Pkg.test() # resolver may fail with test time deps
47+
Pkg.test(; coverage = true) # resolver may fail with test time deps
4848
catch err
4949
err isa Pkg.Resolve.ResolverError || rethrow()
5050
# If we can't resolve that means this is incompatible by SemVer and this is fine
@@ -53,3 +53,7 @@ jobs:
5353
@info "Not compatible with this release. No problem." exception=err
5454
exit(0) # Exit immediately, as a success
5555
end
56+
- uses: julia-actions/julia-processcoverage@v1
57+
- uses: codecov/codecov-action@v2
58+
with:
59+
files: lcov.info

0 commit comments

Comments
 (0)