tests: drop copying of test results

Bats will now output the results on stdout so no need to copy results anywhere.
This commit is contained in:
Jose Diaz-Gonzalez
2021-04-24 14:05:47 -04:00
parent 2a171663ab
commit c18413786f

View File

@@ -80,23 +80,3 @@ jobs:
with:
name: tmp/test-results
path: test-results
publish-test-results:
name: publish-test-results
needs: unit-tests
runs-on: ubuntu-16.04
if: success() || failure()
steps:
- name: download test-results
uses: actions/download-artifact@v2
with:
path: test-results
- name: Publish Unit Test Results
uses: docker://ghcr.io/enricomi/publish-unit-test-result-action:v1.12
with:
check_name: Unit Test Results
github_token: ${{ secrets.GITHUB_TOKEN }}
files: test-results/**/*.xml
comment_on_pr: false