mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
chore: Enhance CI coverage reporting and add main branch workflow (#4873)
This commit is contained in:
parent
a331f96576
commit
f04924ded5
5 changed files with 96 additions and 3 deletions
24
.github/workflows/main-check.yml
vendored
Normal file
24
.github/workflows/main-check.yml
vendored
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
name: Main CI (Verify & Build)
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
paths-ignore:
|
||||
- '**/*.md'
|
||||
- 'docs/**'
|
||||
|
||||
concurrency:
|
||||
group: main-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
validate-and-build:
|
||||
if: github.repository == 'meshtastic/Meshtastic-Android'
|
||||
uses: ./.github/workflows/reusable-check.yml
|
||||
with:
|
||||
run_lint: true
|
||||
run_unit_tests: true
|
||||
run_instrumented_tests: true
|
||||
api_levels: '[35]' # One API level is enough for post-merge sanity check
|
||||
upload_artifacts: true
|
||||
secrets: inherit
|
||||
Loading…
Add table
Add a link
Reference in a new issue