mirror of
https://github.com/asciinema/asciinema.git
synced 2025-12-16 03:38:03 +01:00
23 lines
308 B
YAML
23 lines
308 B
YAML
sudo: false
|
|
language: python
|
|
|
|
python:
|
|
- "3.3"
|
|
- "3.4"
|
|
- "3.5"
|
|
- "3.6"
|
|
|
|
before_install:
|
|
- pip install pep8
|
|
|
|
script:
|
|
- find . -name \*.py -exec pep8 --ignore=E501 {} +
|
|
- make test
|
|
|
|
notifications:
|
|
irc:
|
|
channels:
|
|
- "chat.freenode.net#asciinema"
|
|
use_notice: true
|
|
skip_join: true
|