Bump pyparsing from 3.0.9 to 3.2.4 #87
Workflow file for this run
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: OVC | |
on: | |
workflow_dispatch: | |
inputs: | |
target-branch: | |
description: 'Target branch for the build; taken from event context by default' | |
type: string | |
required: false | |
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 | |
timeout-minutes: 15 | |
- name: Setup Python | |
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0 | |
with: | |
python-version: '3.10' | |
- name: Cache pip | |
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 | |
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 |