Files
ansible-freeipa/azure-pipelines.yml
Sergio Oliveira Campos 0677af0714 Added azure-pipelines check
2020-04-25 19:07:54 -03:00

23 lines
398 B
YAML

trigger:
- master
pool:
vmImage: 'ubuntu-18.04'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.6'
- script: python -m pip install --upgrade pip setuptools wheel
displayName: Install tools
- script: pip install pydocstyle flake8
displayName: Install dependencies
- script: flake8 .
displayName: Run flake8 checks
- script: pydocstyle .
displayName: Verify docstings