Skip to content

Commit

Permalink
Add comments after travis commands
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonisGkortzis committed Apr 21, 2019
1 parent 6ecd4af commit 3f1bdfb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ before_install:
- sudo apt update

install:
- sudo apt install maven -y
- sudo apt install maven -y # this command is only for demonstration reason. Any Travis virtual machine has maven pre-installed by default.

before_script:
- cd project # enter Maven root directory
- ls -la

script:
- mvn clean package jacoco:report coveralls:report
- mvn clean package jacoco:report coveralls:report # the coveralls:report is required only for the coveralls coverage service

after_success:
- bash <(curl -s https://codecov.io/bash) -t 1036eb64-2d96-44c6-b132-0dde4e7dfcca
- bash <(curl -s https://codecov.io/bash) -t 1036eb64-2d96-44c6-b132-0dde4e7dfcca # replace the 1036eb64-2d96-44c6-b132-0dde4e7dfcca with your repository's token obtained by CodeCov

0 comments on commit 3f1bdfb

Please sign in to comment.