Skip to content

Commit

Permalink
Merge pull request #354 from axelson/run-dialyzer-in-ci
Browse files Browse the repository at this point in the history
Re-enable dialyzer in ci
  • Loading branch information
axelson authored Aug 23, 2020
2 parents 47eeed5 + 41aded9 commit d53eb37
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ script:
echo "Not checking formatting"
fi
- mix test
- |
if [[ "$RUN_DIALYZER" -eq 1 ]]
then
travis_wait 30 mix dialyzer
else
echo "Not running Dialyzer"
fi
env:
global:
- MIX_HOME=$HOME/.mix
Expand All @@ -27,3 +34,4 @@ matrix:
elixir: 1.10.3
env:
- CHECK_FORMATTED=1
- RUN_DIALYZER=1

0 comments on commit d53eb37

Please sign in to comment.