OpenVINO 2024.3 and TVM v0.16.0 results + docker handler fix #1473
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: Codestyle checks | |
on: [ push, pull_request, workflow_dispatch ] | |
jobs: | |
codestyle: | |
strategy: | |
matrix: | |
os: [ubuntu-20.04] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Code checkout | |
uses: actions/checkout@v3 | |
- name: Setting up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- name: Setting up Python dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install -r requirements_ci.txt | |
- name: Running flake8 checks | |
run: python3 -m flake8 ./ --config=setup.cfg --show-source --statistics |