We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 224b970 commit 4f8ce89Copy full SHA for 4f8ce89
.gitignore
@@ -2,3 +2,4 @@
2
/deps
3
erl_crash.dump
4
*.ez
5
+docs/
.travis.yml
@@ -0,0 +1,19 @@
1
+language: erlang
+otp_release:
+ - 17.0
+ - 17.1
+ - 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