ci: generate code coverage summary using Kover
#45
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Android Build (Hot fixes / PRs) | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- 'hotfix/**' | |
pull_request: | |
paths-ignore: | |
- '.gitattributes' | |
- '.github/**.json' | |
- '**/.gitignore' | |
- '.gitmodules' | |
- '**/*.md' | |
- 'LICENSE' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- uses: ./.github/actions/android-build | |
with: | |
check-build: true | |
exclude-ci-info: false | |
release-debug-opt: true | |
upload-artifacts: true |