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