maybe fix tests
This commit is contained in:
parent
005e051b3c
commit
aa75f2bbcf
1 changed files with 4 additions and 7 deletions
11
.github/workflows/test.yml
vendored
11
.github/workflows/test.yml
vendored
|
@ -19,7 +19,10 @@ jobs:
|
|||
- name: Setup Gradle
|
||||
uses: gradle/gradle-build-action@v2
|
||||
- name: Execute Gradle build
|
||||
run: ./gradlew build --no-daemon --stacktrace
|
||||
run: |
|
||||
git config --global user.email "no-reply@github.com"
|
||||
git config --global user.name "GitHub Actions"
|
||||
./gradlew build --no-daemon --stacktrace
|
||||
- name: Publish Test Report
|
||||
uses: mikepenz/action-junit-report@v4
|
||||
if: always()
|
||||
|
@ -27,9 +30,3 @@ jobs:
|
|||
report_paths: '**/build/test-results/test/TEST-*.xml'
|
||||
detailed_summary: true
|
||||
annotate_notice: true
|
||||
- name: Upload build reports
|
||||
uses: actions/upload-artifact@v4
|
||||
if: always()
|
||||
with:
|
||||
name: build-reports
|
||||
path: '**/build/reports/tests/'
|
||||
|
|
Loading…
Reference in a new issue