Set up CI with Azure Pipelines [skip ci]

This commit is contained in:
Pascal Vizeli 2019-04-01 12:49:59 +02:00
parent a6e712c9ea
commit 79669a5d04

44
azure-pipelines.yml Normal file
View File

@ -0,0 +1,44 @@
# Python package
# Create and test a Python package on multiple Python versions.
# Add steps that analyze code, save the dist with the build record, publish to a PyPI-compatible index, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/python
trigger:
- master
jobs:
- job: "Tox"
pool:
vmImage: 'ubuntu-16.04'
steps:
- task: UsePythonVersion@0
displayName: 'Use Python $(python.version)'
inputs:
versionSpec: '3.7'
- script: pip install tox
displayName: 'Install Tox'
- script: tox
displayName: 'Run Tox'
- job: "JQ"
pool:
vmImage: 'ubuntu-16.04'
steps:
- task: UsePythonVersion@0
displayName: 'Use Python $(python.version)'
inputs:
versionSpec: '$(python.version)'
- script: apt-get install jq
displayName: 'Install JQ'
- script: "cat **/*.json | jq"
displayName: 'Run JQ'