This is an automated email from the ASF dual-hosted git repository.
ggal pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-livy.git
The following commit(s) were added to refs/heads/master by this push:
new b141e0aa [LIVY-1036] Run both unit tests and integration tests on new
PRs
b141e0aa is described below
commit b141e0aa8b9ff54d360254ab7ed4f8f3ef684207
Author: György Gál <[email protected]>
AuthorDate: Sat Feb 21 18:59:06 2026 -0500
[LIVY-1036] Run both unit tests and integration tests on new PRs
## What changes were proposed in this pull request?
Currently only integration tests are run on new PRs. Unit tests could also
be
launched to ensure code quality.
## How was this patch tested?
- Tested on Github PR.
---
.github/workflows/unit-tests.yaml | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/unit-tests.yaml
b/.github/workflows/unit-tests.yaml
index ccd22a0e..b3dd9a2e 100644
--- a/.github/workflows/unit-tests.yaml
+++ b/.github/workflows/unit-tests.yaml
@@ -15,7 +15,10 @@
# limitations under the License.
#
name: Unit Tests
-on: [push]
+on:
+ push:
+ pull_request:
+ types: [opened, reopened, synchronize]
env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
MAVEN_OPTS: -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false
-Dmaven.wagon.http.retryHandler.class=standard
-Dmaven.wagon.http.retryHandler.count=3