diff options
author | Thiago Coutinho <thiago@osfeio.com> | 2017-12-29 18:56:50 -0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-29 18:56:50 -0200 |
commit | 8e5fdd9b355cc1c0de648850fab0d0787cd275d2 (patch) | |
tree | e717ec7cf639d0a1f0398ecc3e77bcde7e22bb93 | |
parent | Fix test suite (#11) (diff) | |
parent | add travis (diff) |
Merge pull request #12 from digaoddc/travis
Add Travis
-rw-r--r-- | .travis.yml | 23 | ||||
-rw-r--r-- | README.md | 2 |
2 files changed, 25 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..8109625 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,23 @@ + +language: elixir + +elixir: + - 1.3 + - 1.4 + - 1.5 +otp_release: + - 17.4 + - 18.3 + - 19.3 + - 20.0 + +matrix: + exclude: + - elixir: 1.3 + otp_release: 20.0 +# - elixir: 1.4 +# otp_release: 17.4 +# - elixir: 1.4 +# otp_release: 18.3 + +script: mix test
\ No newline at end of file @@ -2,6 +2,8 @@ A client to [PowerDNS 4 API](https://doc.powerdns.com/md/httpapi/README/), with all CRUD operations to manage zones and records. +[![Build Status](https://travis-ci.org/digaoddc/power_dnsex.svg?branch=travis)](https://travis-ci.org/digaoddc/power_dnsex) + ## Installation If [available in Hex](https://hex.pm/docs/publish), the package can be installed as: |