Only some checks are enabled here in order to make this change easier to review and less error prone.
20 lines
236 B
YAML
20 lines
236 B
YAML
language: python
|
|
|
|
services:
|
|
- docker
|
|
|
|
before_install:
|
|
- docker pull ubuntu:16.04
|
|
|
|
install:
|
|
- pip install flake8==3.4.1
|
|
|
|
script:
|
|
- flake8
|
|
- set -o errexit
|
|
- echo "running..."
|
|
- docker build .
|
|
|
|
notifications:
|
|
email: false
|