Skip to content

[CI] [GHA] Add system information print action #4

[CI] [GHA] Add system information print action

[CI] [GHA] Add system information print action #4

name: Check System Info
on:
pull_request:
paths:
- '**'
- '!**/docs/**'
- '!docs/**'
- 'docs/snippets/**'
- '!**/**.md'
- '!**.md'
jobs:
Check:
timeout-minutes: 5
defaults:
run:
shell: bash
strategy:
max-parallel: 3
fail-fast: false
matrix:
machine: [aks-linux-8-cores, macos-13, windows-latest]
runs-on: ${{ matrix.machine }}
steps:
- name: Clone OpenVINO
uses: actions/checkout@v4
with:
path: 'openvino'
#
# Print system info
#
- name: System info
uses: ./openvino/.github/actions/system_info