We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 20e62a3 + 9c000ce commit 6ce0709Copy full SHA for 6ce0709
.github/workflows/Downstream.yml
@@ -38,7 +38,7 @@ jobs:
38
# force it to use this PR's version of the package
39
Pkg.develop(PackageSpec(path=".")) # resolver may fail with main deps
40
Pkg.update()
41
- Pkg.test() # resolver may fail with test time deps
+ Pkg.test(coverage=true) # resolver may fail with test time deps
42
catch err
43
err isa Pkg.Resolve.ResolverError || rethrow()
44
# If we can't resolve that means this is incompatible by SemVer and this is fine
@@ -47,3 +47,7 @@ jobs:
47
@info "Not compatible with this release. No problem." exception=err
48
exit(0) # Exit immediately, as a success
49
end
50
+ - uses: julia-actions/julia-processcoverage@v1
51
+ - uses: codecov/codecov-action@v1
52
+ with:
53
+ file: lcov.info
0 commit comments