[RSDK-10228] Fixup passing of project name between jobs in template (… #26
This file contains 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: Micro-RDK CI | |
on: | |
workflow_call: | |
workflow_dispatch: | |
pull_request: | |
branches: ['main'] | |
push: | |
branches: | |
- '**' | |
tags-ignore: | |
- '**' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
format: | |
name: Check code formatting | |
uses: ./.github/workflows/format.yml | |
ci-native: | |
name: Run CI Native | |
needs: [format] | |
uses: ./.github/workflows/native.yml | |
ci-esp32: | |
name: Run CI Esp32 | |
needs: [format] | |
uses: ./.github/workflows/esp32.yml | |