Skip to content
Open
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
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ on: [push, pull_request, workflow_dispatch]
env:
RELEASE_DIR: tmp_release

permissions:
contents: read
actions: read
checks: write

jobs:
test-and-assemble:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -77,6 +82,26 @@ jobs:
retention-days: 14
if-no-files-found: error

- name: Upload test reports
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: test reports
path: |
target/test-reports/*.xml
retention-days: 14
if-no-files-found: error

- name: Test Report
uses: phoenix-actions/test-reporting@v15
if: ${{ !cancelled() }}
with:
name: "Silicon Test Report"
path: "target/test-reports/*.xml"
reporter: java-junit
list-suites: failed
list-tests: failed

release-snapshot:
needs: test-and-assemble
# Only for regular commits to master branch (no pull requests, no tagging)
Expand Down
Loading