mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-03-26 21:33:05 +00:00
23 lines
398 B
YAML
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
|