mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-03-27 10:11:48 -04:00
25 lines
555 B
YAML
25 lines
555 B
YAML
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
|