From aa3a9075db5578fbe0fbdacb51199c23c6721917 Mon Sep 17 00:00:00 2001 From: rahulsasingh Date: Wed, 24 Jun 2026 12:37:38 +0000 Subject: [PATCH] Fix README build/test commands --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 306317c0..cc4df964 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ cd YOUR_PROJECT To build all targets of the module the following command can be used: ```sh -bazel build //score/... +bazel build --config=x86_64-linux //score/... ``` This command will instruct Bazel to build all targets that are under Bazel @@ -67,7 +67,7 @@ artifacts of the module. ### 3️⃣ Run Tests ```sh -bazel test //tests/... +bazel test --config=x86_64-linux -- //score/... -//score/test/component/... ``` ---