diff --git a/justfile b/justfile
index 62fdb243a3fe1b3a04a279257fecc4ade16a3225..0b210f4ad8231d7387242c50f6b7c79a598a81db 100644
--- a/justfile
+++ b/justfile
@@ -14,7 +14,7 @@ test:
     go test -coverprofile=cover.profile ./...
 
 code-coverage: test
-    go tool cover -func cover.profile
+    go tool cover -html cover.profile
 
 lint:
     docker run --rm -t -v $(pwd):/app -w /app \