Skip to content

Commit

Permalink
ci: display test results
Browse files Browse the repository at this point in the history
  • Loading branch information
WinDanesz committed Mar 31, 2024
1 parent ad51401 commit d5160cb
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,21 @@ jobs:
- name: Run tests
id: tests
env:
env:
USE_ALPHAS: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_USER: ${{ env.GITHUB_USER }}
PROJECT_VERSION: ${{ env.PROJECT_VERSION }}
run: './gradlew test'
run: |
./gradlew test
cp -r build/test-results $GITHUB_WORKSPACE
- name: Display Test Results
if: ${{ always() }}
uses: EnricoMi/display-test-results-action@v2
with:
path: ${{ github.workspace }}/build/test-results


- name: Build
id: build
Expand Down

0 comments on commit d5160cb

Please sign in to comment.