From cca7b4d895afc69d091b29d0c73edab6d06da441 Mon Sep 17 00:00:00 2001 From: Nathan DuPont Date: Mon, 8 Apr 2024 01:46:34 -0700 Subject: [PATCH] teststeststests --- .github/workflows/ci.yaml | 2 ++ BUILD.bazel | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index dd12acf..63a7731 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -38,3 +38,5 @@ jobs: echo "$formatted_files" exit 1 fi + - name: 🧪 Run Tests + run: bazel test //src/... diff --git a/BUILD.bazel b/BUILD.bazel index a7c10f9..9a323e1 100644 --- a/BUILD.bazel +++ b/BUILD.bazel @@ -12,15 +12,15 @@ compile_pip_requirements( # Set up commands to build all images in the project command( - name = "api_v1_img", - command = "//src/api/v1:tarball", + name = "api_v2_img", + command = "//src/api/v2:tarball", visibility = ["//visibility:public"], ) multirun( name = "build_all_imgs", commands = [ - ":api_v1_img", + ":api_v2_img", ], jobs = 0, )