Skip to content

Commit fa6fde8

Browse files
add to GH workflow
Co-authored-by: Thomas Chow <[email protected]>
1 parent 87d7789 commit fa6fde8

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

.github/workflows/test_scala_non_spark.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ on:
1212
- 'hub/**'
1313
- 'orchestration/**'
1414
- 'service/**'
15+
- 'cloud_aws/**'
1516
- 'cloud_gcp/**'
1617
- '.github/workflows/test_scala_non_spark.yaml'
1718
- 'build.sbt'
@@ -26,6 +27,7 @@ on:
2627
- 'hub/**'
2728
- 'orchestration/**'
2829
- 'service/**'
30+
- 'cloud_aws/**'
2931
- 'cloud_gcp/**'
3032
- '.github/workflows/test_scala_non_spark.yaml'
3133
- 'build.sbt'
@@ -109,3 +111,10 @@ jobs:
109111
--remote_cache=https://storage.googleapis.com/zipline-bazel-cache \
110112
--google_credentials=bazel-cache-key.json \
111113
//cloud_gcp:tests
114+
115+
- name: Run cloud aws tests
116+
run: |
117+
bazel test \
118+
--remote_cache=https://storage.googleapis.com/zipline-bazel-cache \
119+
--google_credentials=bazel-cache-key.json \
120+
//cloud_aws:tests

cloud_aws/BUILD.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ test_deps = [
3333
] + _CIRCE_DEPS + _SCALA_TEST_DEPS
3434

3535
scala_library(
36-
name = "cloud_aws_test_lib",
36+
name = "test_lib",
3737
srcs = glob(["src/test/**/*.scala"]),
3838
visibility = ["//visibility:public"],
3939
deps = test_deps,
4040
)
4141

4242

4343
scala_test_suite(
44-
name = "cloud_aws_test",
44+
name = "tests",
4545
srcs = glob(["src/test/**/*.scala"]),
4646
# defined in prelude_bazel file
4747
jvm_flags = _JVM_FLAGS_FOR_ACCESSING_BASE_JAVA_CLASSES,

0 commit comments

Comments
 (0)