OVC #29223
Workflow file for this run
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: OVC | |
on: | |
merge_group: | |
push: | |
branches: | |
- 'master' | |
- 'releases/**' | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: read-all | |
jobs: | |
Pylint-UT: | |
runs-on: ubuntu-22.04 | |
if: ${{ github.repository_owner == 'openvinotoolkit' }} | |
steps: | |
- name: Clone OpenVINO | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Setup Python | |
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0 | |
with: | |
python-version: '3.10' | |
- name: Cache pip | |
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('src/bindings/python/requirements*.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
${{ runner.os }}- | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip setuptools | |
# For UT | |
pip install unittest-xml-reporting==3.0.2 | |
pip install pylint>=2.7.0 | |
pip install pyenchant>=3.0.0 | |
pip install -r requirements.txt | |
working-directory: src/bindings/python/ | |
- name: Pylint-OVC | |
run: pylint -d C,R,W openvino/tools/ovc | |
working-directory: tools/ovc | |
Overall_Status: | |
name: ci/gha_overall_status_ovc | |
needs: [Pylint-UT] | |
if: ${{ always() }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check status of all jobs | |
if: >- | |
${{ | |
contains(needs.*.result, 'failure') || | |
contains(needs.*.result, 'cancelled') | |
}} | |
run: exit 1 |