forked from marshmallow-code/apispec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines.yml
49 lines (40 loc) · 895 Bytes
/
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
41
42
43
44
45
46
47
48
49
trigger:
branches:
include: [dev, test-me-*]
tags:
include: ['*']
# Run builds nightly to catch incompatibilities with new marshmallow releases
schedules:
- cron: "0 0 * * *"
displayName: Daily midnight build
branches:
include:
- dev
always: "true"
resources:
repositories:
- repository: sloria
type: github
endpoint: github
name: sloria/azure-pipeline-templates
ref: refs/heads/sloria
jobs:
- template: job--python-tox.yml@sloria
parameters:
toxenvs:
- lint
- py35-marshmallow2
- py35-marshmallow3
- py36-marshmallow3
- py37-marshmallow3
- py38-marshmallow2
- py38-marshmallow3
- py38-marshmallowdev
- docs
os: linux
- template: job--pypi-release.yml@sloria
parameters:
python: "3.7"
distributions: "sdist bdist_wheel"
dependsOn:
- tox_linux