mirror of
https://github.com/edgurgel/httparrot
synced 2025-04-06 00:32:34 -04:00
18 lines
488 B
YAML
18 lines
488 B
YAML
language: erlang
|
|
notifications:
|
|
recipients:
|
|
- eduardo@gurgel.me
|
|
env:
|
|
- ELIXIR="v0.14.1"
|
|
- ELIXIR="v0.14.2"
|
|
- ELIXIR="v0.14.3"
|
|
otp_release:
|
|
- 17.0
|
|
install: mix deps.get
|
|
before_install:
|
|
- mkdir -p vendor/elixir
|
|
- wget -q https://github.com/elixir-lang/elixir/releases/download/$ELIXIR/Precompiled.zip && unzip -qq Precompiled.zip -d vendor/elixir
|
|
- export PATH="$PATH:$PWD/vendor/elixir/bin"
|
|
- export MIX_ENV=test
|
|
- mix local.hex --force
|
|
script: mix test --no-start
|