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