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 63b6bf2 + 44f4505 commit 11f3a3cCopy full SHA for 11f3a3c
.github/workflows/Downstream.yml
@@ -40,7 +40,7 @@ jobs:
40
# force it to use this PR's version of the package
41
Pkg.develop(PackageSpec(path=".")) # resolver may fail with main deps
42
Pkg.update()
43
- Pkg.test() # resolver may fail with test time deps
+ Pkg.test(coverage=true) # resolver may fail with test time deps
44
catch err
45
err isa Pkg.Resolve.ResolverError || rethrow()
46
# If we can't resolve that means this is incompatible by SemVer and this is fine
@@ -49,3 +49,7 @@ jobs:
49
@info "Not compatible with this release. No problem." exception=err
50
exit(0) # Exit immediately, as a success
51
end
52
+ - uses: julia-actions/julia-processcoverage@v1
53
+ - uses: codecov/codecov-action@v1
54
+ with:
55
+ file: lcov.info
0 commit comments