This is an automated email from the ASF dual-hosted git repository.
jbonofre pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/karaf.git
The following commit(s) were added to refs/heads/main by this push:
new 2d4a742349 Add integration tests execution in the CI (#2076)
2d4a742349 is described below
commit 2d4a742349e7ff22ec94a8f553b57519bdbe7459
Author: JB Onofré <[email protected]>
AuthorDate: Sun Oct 5 08:44:01 2025 +0200
Add integration tests execution in the CI (#2076)
---
.github/workflows/build.yml | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index c1b4d42575..0f9e87ee87 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -33,13 +33,13 @@ jobs:
contents: read
steps:
- - uses: actions/checkout@v4
+ - name: Checkout
+ uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- - name: Build
- run: mvn -U -B -e clean install -DskipTests -Prat
- - name: Test
- run: mvn -B -e -fae test -Ptest
+ cache: 'maven'
+ - name: Build & Test
+ run: mvn -U -B -e clean install -Prat,test