.travis.yml 425 字节
Newer Older
D
Dan Lorenc 已提交
1
language: go
2 3
os: linux

4 5
env:
  - GOPROXY=https://proxy.golang.org
6 7
matrix:
  include:
M
Medya Gh 已提交
8
    - go: 1.12.7
9 10 11
    - language: python
      before_install: pip install flake8
      script: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
12

13 14
before_install:
  - sudo apt-get install -y libvirt-dev
D
Dan Lorenc 已提交
15
install:
16
  - echo "Don't run anything."
17 18 19 20
script:
  - make test
after_success:
  - bash <(curl -s https://codecov.io/bash)