Skip to content

Commit

Permalink
Merge pull request #5536 from n0npax/yamllint-on-travis-file
Browse files Browse the repository at this point in the history
fix linting for travis.yml
  • Loading branch information
medyagh committed Oct 7, 2019
2 parents 63497aa + 4134d08 commit 33b6547
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
---
# linted with yamllint
os: linux
language: go
go:
Expand All @@ -8,15 +10,15 @@ env:
matrix:
include:
- language: python
name: Check Boilerplate
name: Check Boilerplate
env:
- TESTSUITE=boilerplate
before_install:
- pip install flake8 && flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
before_install:
- pip install flake8 && flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
script: make test

- language: go
name: Code Lint
name: Code Lint
go: 1.12.9
env:
- TESTSUITE=lint
Expand All @@ -35,10 +37,10 @@ matrix:
after_success:
- bash <(curl -s https://codecov.io/bash)
notifications:
webhooks:
urls:
- https://www.travisbuddy.com?only=failed,errored
on_success: never # don't comment on successful builds.
on_failure: always
on_cancel: always
on_error: always
webhooks:
urls:
- https://www.travisbuddy.com?only=failed,errored
on_success: never # don't comment on successful builds.
on_failure: always
on_cancel: always
on_error: always

0 comments on commit 33b6547

Please sign in to comment.