feat(dashboard): editable primary provider per platform incl native s… #191
Workflow file for this run
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
| # CI Workflow — delegates to mbl-actionhub reusable CI workflow | |
| # | |
| # Triggers: | |
| # - push to development or main (full build — all modules always verified) | |
| # - workflow_call (invoked by publish.yml before every Maven publish) | |
| # | |
| # PRs are handled separately by pr-check.yml (fast gate, quality + JVM only). | |
| name: CI | |
| on: | |
| push: | |
| branches: [ "development", "main" ] | |
| workflow_call: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| ci: | |
| uses: MobileByteLabs/mbl-actionhub/.github/workflows/ci-kmp-library.yml@v1.1.1 | |
| with: | |
| module-pattern: 'cmp-' | |
| java-version: '21' | |
| java-distribution: 'zulu' | |
| run-quality: true |