We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68110b6 commit 9d3dcd0Copy full SHA for 9d3dcd0
.github/workflows/build.yml
@@ -20,3 +20,10 @@ jobs:
20
run: chmod +x gradlew
21
- name: Build with Gradle
22
run: ./gradlew build
23
+ - name: Test with Gradle
24
+ run: ./gradlew test
25
+ - name: Publish Test Report
26
+ uses: mikepenz/action-junit-report@v2
27
+ if: always() # always run even if the previous step fails
28
+ with:
29
+ report_paths: '**/build/test-results/test/TEST-*.xml'
azure-pipelines.yml
0 commit comments