Bump actions/setup-python from 5 to 6 #196
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: OVMobileBench CI | |
| on: | |
| push: | |
| branches: [main, develop] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| inputs: | |
| device_serial: | |
| description: 'Device serial' | |
| required: false | |
| # Cancel in-progress runs when a new commit is pushed to the same PR or branch | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| # Run pre-commit only once on ubuntu-latest | |
| pre-commit: | |
| uses: ./.github/workflows/stage-pre-commit.yml | |
| secrets: inherit | |
| # Run CI matrix for all OS after pre-commit passes | |
| ci-matrix: | |
| needs: pre-commit | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| uses: ./.github/workflows/ci-orchestrator.yml | |
| with: | |
| os: ${{ matrix.os }} | |
| device_serial: ${{ github.event.inputs.device_serial || 'emulator-5554' }} | |
| secrets: inherit |