-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #77 from gjaldon/refactor-internals
Refactor internals and add requested features
- Loading branch information
Showing
15 changed files
with
504 additions
and
195 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -1,11 +1,19 @@ | ||
sudo: false | ||
language: elixir | ||
elixir: | ||
- 1.4.0 | ||
- 1.5.0 | ||
# Report documentation coverage to InchCI. | ||
after_script: | ||
- mix inch.report | ||
- 1.9.0 | ||
- 1.8.2 | ||
- 1.7.4 | ||
services: | ||
- postgresql | ||
- mysql | ||
before_install: | ||
- mysql -e 'CREATE DATABASE ecto_test;' | ||
before_script: | ||
- psql -c 'create database ecto_test;' -U postgres | ||
script: | ||
- mix test | ||
- MIX_ENV=mysql mix test | ||
# Report documentation coverage to InchCI. | ||
after_script: | ||
- mix inch.report |
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
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
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
Oops, something went wrong.