We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c907231 commit 659982cCopy full SHA for 659982c
.github/workflows/prs_and_commits.yml
@@ -51,6 +51,13 @@ jobs:
51
cache: maven
52
- name: Build (Maven)
53
run: mvn -P ci -ntp --batch-mode clean package
54
+ - name: Upload logs on fail
55
+ if: ${{ failure() }}
56
+ uses: actions/upload-artifact@v4
57
+ with:
58
+ name: failure_logs
59
+ path: "**/target/surefire-reports/**"
60
+ retention-days: 1
61
- name: Integration tests (Maven)
62
env:
63
# Necessary for client builder integration tests that run with
@@ -70,5 +77,5 @@ jobs:
70
77
if: always()
71
78
uses: actions/upload-artifact@v4
72
79
with:
73
- path: kcbq-connector/target/failsafe-reports/*
80
+ path: "**/target/failsafe-reports/**"
74
81
name: integration-test-results
0 commit comments