diff options
-rw-r--r-- | azure-pipelines.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 9eeb58a..1c8cbbb 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -8,6 +8,9 @@ jobs: vmImage: 'ubuntu-18.04' steps: + - script: pip install flake8 + displayName: 'Install Linter' + - script: flake8 --format junit-xml --output-file test-lint.xml displayName: 'Run Linter' |