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 ddd790d commit 8f98929Copy full SHA for 8f98929
.github/workflows/benchmarks.yml
@@ -70,7 +70,7 @@ jobs:
70
71
for file in BenchmarkDotNet.Artifacts/results/*.json; do
72
jq -r '
73
- def nano: (. * 1000 | tostring | split(".") | .[0] + "." + (. [1:] | .[0:3] // ""));
+ def nano: (. * 1000 | tostring | split(".") | if length == 1 then .[0] + ".000" else .[0] + "." + (. [1:] | .[0:3]) end);
74
75
.Benchmarks[] |
76
.Statistics as $s |
0 commit comments