Skip to content

Commit

Permalink
teststeststests
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanDuPont committed Apr 8, 2024
1 parent 3f9d499 commit cca7b4d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,5 @@ jobs:
echo "$formatted_files"
exit 1
fi
- name: 🧪 Run Tests
run: bazel test //src/...
6 changes: 3 additions & 3 deletions BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)
Expand Down

0 comments on commit cca7b4d

Please sign in to comment.