21 lines
408 B
YAML
21 lines
408 B
YAML
|
trigger:
|
||
|
branches:
|
||
|
include: [master, test-me-*]
|
||
|
tags:
|
||
|
include: ['*']
|
||
|
|
||
|
resources:
|
||
|
repositories:
|
||
|
- repository: asottile
|
||
|
type: github
|
||
|
endpoint: github
|
||
|
name: asottile/azure-pipeline-templates
|
||
|
ref: refs/tags/v1.0.1
|
||
|
|
||
|
jobs:
|
||
|
- template: job--pre-commit.yml@asottile
|
||
|
- template: job--python-tox.yml@asottile
|
||
|
parameters:
|
||
|
toxenvs: [pypy3, py36, py37, py38]
|
||
|
os: linux
|