From 5c13aa5f9d45085789083352ecd9146c58c1eeff Mon Sep 17 00:00:00 2001 From: Paul Dobbins Date: Sat, 13 Jul 2019 17:10:37 -0500 Subject: [PATCH] Add Travis-CI integration ... along with GitHub PR integration. --- .travis.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..b9af17e --- /dev/null +++ b/.travis.yml @@ -0,0 +1,14 @@ +env: + global: + - MIX_ENV=test + - PULL_REQUEST_ID=$TRAVIS_PULL_REQUEST +sudo: false +language: ruby +rvm: + - 2.5.3 +notifications: + email: false +before_install: gem install bundler -v 2.0.1 +cache: bundler +script: + - 'PULL_REQUEST_ID=${TRAVIS_PULL_REQUEST} bundle exec pronto run -c origin/master -f text github_status github_pr_review'