Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/Android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,17 @@ jobs:
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build

# You may pin to the exact commit or the version.
# uses: mikepenz/action-junit-report@47c2b1d0baf4e9cd2e03bdf29325f1e9ec28994a
- name: JUnit Report Action
uses: mikepenz/action-junit-report@v3.0.1
with:
# Comma seperated list of source folders to ignore for lookup [/build/,/__pycache__/]
exclude_sources: /docs/,/gradle/,/app/build/,/app/libs/
# Regular expression for the named test suites
suite_regex: +*Test.java
# Fail the build in case a test failure occurred [false]
fail_on_failure: true
# Fail if no test are found. [false]
require_tests: true