From 9943635a98b4839bcc2a0cafbd5f013c0fd6f491 Mon Sep 17 00:00:00 2001 From: "Michael Hirsch, Ph.D" Date: Wed, 31 Jul 2019 17:48:25 -0400 Subject: add pylint Azure job --- azure-pipelines.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 5f6dafd..56dc4b9 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -12,6 +12,21 @@ variables: CI: 1 jobs: +- job: Pylint + pool: + vmImage: ubuntu-latest + + steps: + - task: UsePythonVersion@0 + inputs: + versionSpec: '3.7' + addToPath: true + - script: python -m pip install pylint + displayName: Install Pylint + - script: pylint mesonbuild + displayName: Lint Checks + + - job: vs2015 pool: vmImage: vs2015-win2012r2 -- cgit v1.1