Skip to content

Commit

Permalink
feat: download and publish reports to pr
Browse files Browse the repository at this point in the history
Signed-off-by: Iliya Savov <[email protected]>
  • Loading branch information
isavov committed Jan 18, 2024
1 parent fb980af commit b56c42c
Showing 1 changed file with 32 additions and 1 deletion.
33 changes: 32 additions & 1 deletion .github/workflows/acceptance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
with:
testfilter: api_batch2

api_batch3:
api_batch_3:
name: API Batch 3
uses: ./.github/workflows/acceptance-workflow.yml
with:
Expand Down Expand Up @@ -84,3 +84,34 @@ jobs:
uses: ./.github/workflows/acceptance-workflow.yml
with:
testfilter: cache-service

publish_results:
name: Publish Results
if: ${{ !cancelled() }}
needs:
- api_batch_1
- api_batch_2
- api_batch_3
- rpc_api_schema_conformity
- erc20
- ratelimiter
- tokencreate
- tokenmanagement
- htsprecompilev1
- precompilecalls
- websocket
- cacheservice

runs-on: ubuntu-latest
steps:
- name: Download Test Reports
uses: actions/download-artifact@v3
with:
name: Test Results

- name: Publish Test Report
uses: actionite/publish-unit-test-result-action@v2
with:
check_name: Test Results
json_thousands_separator: ','
junit_files: 'test-*.xml'

0 comments on commit b56c42c

Please sign in to comment.