Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ tmp
*.o
*.a
mkmf.log
*.rej
16 changes: 7 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
dist: bionic
language: ruby
rvm: 2.4.4
cache: bundler
sudo: false
script: TRAVIS_CI=1 bundle exec rake test
rvm: 2.7
services:
- postgresql
addons:
postgresql: "9.4"
postgresql: 10
script: bundle exec rake test
before_install:
- gem update --system
- gem install bundler
before_script:
- psql -c 'create database pghero_test;' -U postgres
- createdb pghero_test
notifications:
email:
on_success: never
Expand Down
Loading