refactor(messaging): fix contact key derivation in ContactsViewModel … #10
This file contains hidden or 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: 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 |