forked from quantum-elixir/quantum-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
38 lines (38 loc) · 688 Bytes
/
.travis.yml
File metadata and controls
38 lines (38 loc) · 688 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
language: elixir
sudo: false
env:
- MIX_ENV=test
elixir:
- 1.5
- 1.6
otp_release:
- 19.3
- 20.0
script: mix coveralls.travis
cache:
directories:
- ~/.mix
- ~/.hex
jobs:
include:
- stage: format
env:
- MIX_ENV=dev
script: mix format --check-formatted
elixir: 1.6
- stage: credo
env:
- MIX_ENV=dev
script: mix credo --strict
elixir: 1.6
- stage: dialyzer
env:
- MIX_ENV=dev
before_script: travis_wait mix dialyzer --plt
script: mix dialyzer --halt-exit-status
elixir: 1.6
- stage: inch
env:
- MIX_ENV=docs
script: mix inch.report
elixir: 1.6