Codebase list apispec / 41538830-56e0-4fa1-bcc8-79330d7d7bc6/main azure-pipelines.yml
41538830-56e0-4fa1-bcc8-79330d7d7bc6/main

Tree @41538830-56e0-4fa1-bcc8-79330d7d7bc6/main (Download .tar.gz)

azure-pipelines.yml @41538830-56e0-4fa1-bcc8-79330d7d7bc6/mainraw · history · blame

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

      - py36-marshmallow3
      - py37-marshmallow3
      - py38-marshmallow3
      - py39-marshmallow3

      - py39-marshmallowdev

      - docs
    os: linux
- template: job--pypi-release.yml@sloria
  parameters:
    python: "3.9"
    distributions: "sdist bdist_wheel"
    dependsOn:
      - tox_linux