Skip to content

Bump actions/setup-python from 5 to 6 #196

Bump actions/setup-python from 5 to 6

Bump actions/setup-python from 5 to 6 #196

Workflow file for this run

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