mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-06-01 23:30:35 +00:00
19 lines
424 B
YAML
19 lines
424 B
YAML
jobs:
|
|
- job: 'PythonCodeChecks'
|
|
pool:
|
|
vmImage: 'ubuntu-20.04'
|
|
|
|
timeoutInMinutes: 10
|
|
|
|
steps:
|
|
- task: UsePythonVersion@0
|
|
inputs:
|
|
versionSpec: '3.8'
|
|
addToPath: true
|
|
architecture: 'x64'
|
|
|
|
- script: python -m pip install -r tools/ci_build/github/python_checks/requirements.txt
|
|
displayName: "Install requirements"
|
|
|
|
- script: python -m flake8 --config .flake8
|
|
displayName: "Run Flake8"
|