mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-15 19:38:15 -04:00
27 lines
505 B
YAML
27 lines
505 B
YAML
name: Main CI (Verify & Build)
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
paths-ignore:
|
|
- '**/*.md'
|
|
- 'docs/**'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
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: false
|
|
run_desktop_builds: false
|
|
upload_artifacts: true
|
|
secrets: inherit
|