Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ jobs:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.workflow_run.head_sha }}
submodules: recursive
- name: Cache
uses: actions/cache@v3
with:
Expand All @@ -43,7 +44,7 @@ jobs:
- name: Build with Maven
run: mvn clean test -fae -T 2 -B -V -DcloudBuild -Dmaven.wagon.http.retryHandler.count=3 -Dmaven.wagon.httpconnectionManager.ttlSeconds=25
- name: Archive build artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v2.2.2
if: always()
with:
name: Build debug files
Expand All @@ -60,3 +61,9 @@ jobs:
detailed_summary: true
commit: ${{ github.event.workflow_run.head_sha }}
check_name: Test Report
- name: Checkstyle report
uses: tivv/checkstyle-github-action@fcf8ffb7c6a5c110bbc5dafb84aca54caf359b80
if: always()
with:
path: '**/checkstyle-result.xml'
commit: ${{ github.event.workflow_run.head_sha }}
Loading