We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4546c8a + 5203e38 commit ff57f44Copy full SHA for ff57f44
.github/workflows/Downstream.yml
@@ -45,7 +45,7 @@ jobs:
45
# force it to use this PR's version of the package
46
Pkg.develop(PackageSpec(path=".")) # resolver may fail with main deps
47
Pkg.update()
48
- Pkg.test() # resolver may fail with test time deps
+ Pkg.test(coverage=true) # resolver may fail with test time deps
49
catch err
50
err isa Pkg.Resolve.ResolverError || rethrow()
51
# If we can't resolve that means this is incompatible by SemVer and this is fine
@@ -54,3 +54,7 @@ jobs:
54
@info "Not compatible with this release. No problem." exception=err
55
exit(0) # Exit immediately, as a success
56
end
57
+ - uses: julia-actions/julia-processcoverage@v1
58
+ - uses: codecov/codecov-action@v1
59
+ with:
60
+ file: lcov.info
0 commit comments