Skip to content

Commit 8f98929

Browse files
committed
bugfix
1 parent ddd790d commit 8f98929

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/benchmarks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
7171
for file in BenchmarkDotNet.Artifacts/results/*.json; do
7272
jq -r '
73-
def nano: (. * 1000 | tostring | split(".") | .[0] + "." + (. [1:] | .[0:3] // ""));
73+
def nano: (. * 1000 | tostring | split(".") | if length == 1 then .[0] + ".000" else .[0] + "." + (. [1:] | .[0:3]) end);
7474
7575
.Benchmarks[] |
7676
.Statistics as $s |

0 commit comments

Comments
 (0)