minikube/.travis.yml

21 lines
425 B
YAML
Raw Normal View History

2016-04-25 17:14:31 +00:00
language: go
os: linux
env:
- GOPROXY=https://proxy.golang.org
matrix:
include:
- go: 1.12.9
- language: python
before_install: pip install flake8
script: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
2019-05-14 16:15:28 +00:00
before_install:
- sudo apt-get install -y libvirt-dev
2016-04-25 17:14:31 +00:00
install:
- echo "Don't run anything."
script:
- make test
after_success:
- bash <(curl -s https://codecov.io/bash)