mirror of
https://github.com/edgurgel/httparrot
synced 2025-04-06 00:32:34 -04:00
14 lines
420 B
YAML
14 lines
420 B
YAML
language: erlang
|
|
notifications:
|
|
recipients:
|
|
- eduardo@gurgel.me
|
|
otp_release:
|
|
- 17.0
|
|
install: mix deps.get
|
|
before_install:
|
|
- mkdir -p vendor/elixir
|
|
- wget -q https://github.com/elixir-lang/elixir/releases/download/v0.13.1/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
|