.travis.yml in table_sync-0.0.0 vs .travis.yml in table_sync-1.4.0

- old
+ new

@@ -8,10 +8,20 @@ - rvm: 2.6 - rvm: ruby-head allow_failures: - rvm: ruby-head sudo: false +dist: xenial cache: bundler +services: + - postgresql +addons: + postgresql: "10" before_install: gem install bundler +before_script: + - psql -c 'create database table_sync_test;' -U postgres script: +- mkdir log +- bundle exec rake bundle:audit - bundle exec rubocop - bundle exec rspec +