I have a package where the CI uses BenchmarkTools.jl, and there is some logging with level -1 (see log level definition and log message generation).
This causes an error because only standard log levels are taken into account for the GitHub action (see CI log).
I have a package where the CI uses BenchmarkTools.jl, and there is some logging with level -1 (see log level definition and log message generation). This causes an error because only standard log levels are taken into account for the GitHub action (see CI log).
I believe the culprit is this block of code, which needs an
else
otherwisecmd
might benothing
: https://github.com/julia-actions/GitHubActions.jl/blob/bf65faa8a89658200e2496b9895f3d4e8ad3c719/src/GitHubActions.jl#L242-L250