Skip to content

Commit

Permalink
Feature: Use a build stage for code coverage (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
ImNotAVirus committed Sep 24, 2019
1 parent 56e0c1e commit a3eba49
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,13 @@ script:
- "mix format --dry-run --check-formatted"
# Run all tests except pending ones
- "mix test --trace"
# Push code coverage
- "mix coveralls.travis"

after_script:
- mix deps.get
# Documentation coverage
- mix inch.report
jobs:
include:
- stage: code_coverage
script:
- "mix deps.get"
# Push code coverage
- "mix coveralls.travis"
elixir: 1.9.1
otp_release: 22.0

0 comments on commit a3eba49

Please sign in to comment.