marcinruszkiewicz / where_chain

WhereChain - don't write Post.where('comments > ?', 5), write Post.where.gt(comments: 5) instead!
MIT License
44 stars 4 forks source link

Setup testing matrix on Travis CI #5

Closed marcinruszkiewicz closed 4 years ago

marcinruszkiewicz commented 4 years ago

Travis CI allows for easier managing of a test matrix than Circle, so it should be used instead.

For starters, a simple matrix of supported Ruby versions (probably up to last 2.4) and supported Rails versions should be used.

Info: https://docs.travis-ci.com/user/build-matrix/