Skip to content

Commit

Permalink
collecting test artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
lehvolk committed Jul 18, 2022
1 parent d9d9747 commit 2c85993
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,16 @@ jobs:
- name: Build and run tests
run: |
gradle clean build --no-daemon --info
- name: Upload build reports
uses: actions/upload-artifact@v3
with:
name: test-results
path: build/test-results/
# - name: Upload build reports
# uses: actions/upload-artifact@v3
# with:
# name: test-results
# path: build/test-results/
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action@v1
if: always()
with:
files: "test-results/**/*.xml"
files: "build/test-results/**/*.xml"

jdk8:

Expand All @@ -68,13 +68,13 @@ jobs:
- name: Build and run tests
run: |
gradle clean build --no-daemon --info
- name: Upload build reports
uses: actions/upload-artifact@v3
with:
name: test-results
path: build/test-results/
# - name: Upload build reports
# uses: actions/upload-artifact@v3
# with:
# name: test-results
# path: build/test-results/
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action@v1
if: always()
with:
files: "test-results/**/*.xml"
files: "build/test-results/**/*.xml"

0 comments on commit 2c85993

Please sign in to comment.