From 0dc95c0669fd9942210f00bd5deba09512eced6a Mon Sep 17 00:00:00 2001 From: chrislu Date: Sun, 23 Nov 2025 14:30:21 -0800 Subject: [PATCH] fix: run Spark integration tests on all branches Removed branch restrictions from workflow triggers. Now the tests will run on ANY branch when relevant files change: - test/java/spark/** - other/java/hdfs2/** - other/java/hdfs3/** - other/java/client/** - workflow file itself This fixes the issue where tests weren't running on feature branches. --- .github/workflows/spark-integration-tests.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/spark-integration-tests.yml b/.github/workflows/spark-integration-tests.yml index 2483f69b6..55acaac69 100644 --- a/.github/workflows/spark-integration-tests.yml +++ b/.github/workflows/spark-integration-tests.yml @@ -2,7 +2,6 @@ name: Spark Integration Tests on: push: - branches: [ master, main ] paths: - 'test/java/spark/**' - 'other/java/hdfs2/**' @@ -10,7 +9,6 @@ on: - 'other/java/client/**' - '.github/workflows/spark-integration-tests.yml' pull_request: - branches: [ master, main ] paths: - 'test/java/spark/**' - 'other/java/hdfs2/**'