-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
34 additions
and
5 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
machine: | ||
environment: | ||
PATH: "$HOME/.asdf/bin:$HOME/.asdf/shims:$PATH" | ||
MIX_ENV: test | ||
|
||
dependencies: | ||
cache_directories: | ||
- ~/.asdf | ||
- deps | ||
- _build | ||
pre: | ||
- if ! asdf | grep version; then git clone /~https://github.com/asdf-vm/asdf.git ~/.asdf; fi | ||
- asdf plugin-add erlang /~https://github.com/asdf-vm/asdf-erlang.git || true | ||
- asdf plugin-add elixir /~https://github.com/asdf-vm/asdf-elixir.git || true | ||
- echo "erlang 19.0" >> .tool-versions | ||
- echo "elixir 1.3.1" >> .tool-versions | ||
- asdf install | ||
- mix local.hex --force | ||
- mix local.rebar --force | ||
override: | ||
- mix deps.get | ||
- mix deps.compile | ||
- cd example && mix deps.get | ||
- cd example && mix deps.compile | ||
test: | ||
override: | ||
- mix test | ||
- cd example && mix test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
defmodule RawRepo.Migrations.Empty do | ||
use Ecto.Migration | ||
|
||
def change do | ||
end | ||
end |