File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -40,12 +40,16 @@ jobs:
40
40
# force it to use this PR's version of the package
41
41
Pkg.develop(PackageSpec(path=".")) # resolver may fail with main deps
42
42
Pkg.update()
43
- Pkg.test() # resolver may fail with test time deps
43
+ Pkg.test(coverage=true ) # resolver may fail with test time deps
44
44
catch err
45
45
err isa Pkg.Resolve.ResolverError || rethrow()
46
46
# If we can't resolve that means this is incompatible by SemVer and this is fine
47
47
# It means we marked this as a breaking change, so we don't need to worry about
48
48
# Mistakenly introducing a breaking change, as we have intentionally made one
49
49
@info "Not compatible with this release. No problem." exception=err
50
50
exit(0) # Exit immediately, as a success
51
- end
51
+ end
52
+ - uses : julia-actions/julia-processcoverage@v1
53
+ - uses : codecov/codecov-action@v1
54
+ with :
55
+ file : lcov.info
You can’t perform that action at this time.
0 commit comments