Skip to content

Commit 4f8ce89

Browse files
committed
adding travis config
1 parent 224b970 commit 4f8ce89

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
/deps
33
erl_crash.dump
44
*.ez
5+
docs/

.travis.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
language: erlang
2+
otp_release:
3+
- 17.0
4+
- 17.1
5+
- 17.2
6+
- 17.3
7+
env:
8+
- ELIXIR="1.0.0"
9+
before_install:
10+
- wget http://s3.hex.pm/builds/elixir/v$ELIXIR.zip
11+
- unzip -d elixir v$ELIXIR.zip
12+
before_script:
13+
- export PATH=`pwd`/elixir/bin:$PATH
14+
- mix local.hex --force
15+
- "MIX_ENV=test mix do deps.get, compile"
16+
script:
17+
- mix test
18+
after_success:
19+
- MIX_ENV=test mix coveralls.travis

0 commit comments

Comments
 (0)