maybe fix tests

This commit is contained in:
MiniDigger | Martin 2024-06-16 20:24:55 +02:00
parent 005e051b3c
commit aa75f2bbcf

View file

@ -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/'