summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 039d7ccdd53e16a3d1e6be122b553e3d6d7d9328 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
language: erlang
otp_release:
  - 17.0
env:
  - ELIXIR_VERSION=1.0.0
before_install:
  - wget https://github.com/elixir-lang/elixir/releases/download/v$ELIXIR_VERSION/Precompiled.zip
  - unzip -d elixir Precompiled.zip
before_script:
  - export PATH=`pwd`/elixir/bin:$PATH
  - mix local.hex --force
  - mix deps.get
script:
  - MIX_ENV=all mix test
notifications:
  email:
    - paulschoenfelder@gmail.com