-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
40 lines (40 loc) · 1.08 KB
/
azure-pipelines.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
stages:
- stage: test
jobs:
- job: python
strategy:
matrix:
linux_36:
os: ubuntu-latest
python_version: '3.6'
linux_37:
os: ubuntu-latest
python_version: '3.7'
linux_38:
os: ubuntu-latest
python_version: '3.8'
macos_36:
os: macOS-latest
python_version: '3.6'
macos_37:
os: macOS-latest
python_version: '3.7'
macos_38:
os: macOS-latest
python_version: '3.8'
windows_36:
os: windows-latest
python_version: '3.6'
windows_37:
os: windows-latest
python_version: '3.7'
windows_38:
os: windows-latest
python_version: '3.8'
pool:
vmImage: $(os)
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: $(python_version)
- pwsh: script/pipeline/Invoke-Test.ps1