Skip to content

Commit

Permalink
move report back into build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
russcam committed Nov 26, 2023
1 parent d498d31 commit da426ee
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 28 deletions.
29 changes: 28 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,31 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: QdrantNupkg
path: nuget
path: nuget

---
name: Report

on:
workflow_run:
workflows: [ Build ]
types: [ completed ]

permissions:
checks: write

jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: Download Test Report
uses: dawidd6/action-download-artifact@v2
with:
name: junit-test-results
workflow: ${{github.event.workflow.id}}
run_id: ${{github.event.workflow_run.id}}
- name: Publish Test Report
uses: mikepenz/action-junit-report@v4
with:
commit: ${{github.event.workflow_run.head_sha}}
report_paths: '**/output/test-results/junit-*.xml'
26 changes: 0 additions & 26 deletions .github/workflows/report.yml

This file was deleted.

1 change: 0 additions & 1 deletion Qdrant.sln
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".github", ".github", "{ADA61132-ABF9-4DC7-BB8E-B3DA4AA9AB3A}"
ProjectSection(SolutionItems) = preProject
.github\workflows\build.yml = .github\workflows\build.yml
.github\workflows\report.yml = .github\workflows\report.yml
EndProjectSection
EndProject
Global
Expand Down

0 comments on commit da426ee

Please sign in to comment.