Skip to content

Commit

Permalink
Set up CI with azure pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
jalan committed Apr 19, 2020
1 parent 8cf6d30 commit e6f63e4
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
pool:
vmImage: "macOS-10.15"
strategy:
matrix:
Python27:
python.version: "2.7"
Python38:
python.version: "3.8"

steps:
- task: UsePythonVersion@0
inputs:
versionSpec: "$(python.version)"
displayName: "Use Python $(python.version)"

- script: brew install pkg-config poppler
displayName: "Install dependencies"

- script: |
python --version
python setup.py test
displayName: "Test"

0 comments on commit e6f63e4

Please sign in to comment.