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