10 lines
95 B
Bash
Executable file
10 lines
95 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -x
|
|
set -e
|
|
|
|
mix local.hex --force
|
|
mix local.rebar --force
|
|
mix deps.get
|
|
|
|
mix test
|