36 lines
508 B
YAML
36 lines
508 B
YAML
---
|
|
|
|
language: python
|
|
|
|
cache:
|
|
pip: true
|
|
directories:
|
|
- $HOME/.cache/pre-commit
|
|
- $HOME/.pre-commit
|
|
|
|
jobs:
|
|
fast_finish: true
|
|
include:
|
|
- python: "3.7"
|
|
name: linters
|
|
env:
|
|
- TOXENV=linters
|
|
- python: "3.7"
|
|
name: packaging
|
|
env:
|
|
- TOXENV=packaging
|
|
- python: "3.7"
|
|
name: py37
|
|
env:
|
|
- TOXENV=py37
|
|
- python: "3.7"
|
|
name: devel
|
|
env:
|
|
- TOXENV=devel
|
|
|
|
before_script:
|
|
- pip install tox>=3.14.0
|
|
|
|
script:
|
|
- tox
|