From 27dca19bc1c3c9bf5bdcfb9281ebc99a2decf34c Mon Sep 17 00:00:00 2001 From: Phred Lane Date: Fri, 16 Feb 2024 05:05:43 -0600 Subject: [PATCH] limit test runs to changes in java and xml files --- .github/workflows/ci.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 533282efc04..edadba13131 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,11 +2,15 @@ name: CI on: push: - branches: - - github-actions + paths: + - '**.java' + - '**.xml' pull_request: branches: - master + paths: + - '**.java' + - '**.xml' env: MAVEN_OPTS: -Xmx3g -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120