.travis.yml in ransack-2.3.0 vs .travis.yml in ransack-2.3.1

- old
+ new

@@ -1,11 +1,9 @@ language: ruby -sudo: false - rvm: - - 2.6.0 + - 2.6.5 services: - mysql env: @@ -19,30 +17,30 @@ - RAILS=5-2-stable DB=sqlite3 - RAILS=5-2-stable DB=mysql - RAILS=5-2-stable DB=postgres - - RAILS=v5.2.1 DB=sqlite3 - - RAILS=v5.2.1 DB=mysql - - RAILS=v5.2.1 DB=postgres + - RAILS=v5.2.3 DB=sqlite3 + - RAILS=v5.2.3 DB=mysql + - RAILS=v5.2.3 DB=postgres - - RAILS=v5.2.0 DB=sqlite3 - - RAILS=v5.2.0 DB=mysql - - RAILS=v5.2.0 DB=postgres - - - RAILS=5-1-stable DB=sqlite3 - - RAILS=5-1-stable DB=mysql - - RAILS=5-1-stable DB=postgres - matrix: allow_failures: - - env: RAILS=5-2-stable DB=sqlite3 - - env: RAILS=5-2-stable DB=mysql - - env: RAILS=5-2-stable DB=postgres + - env: RAILS=6-0-stable DB=sqlite3 + - env: RAILS=6-0-stable DB=mysql + - env: RAILS=6-0-stable DB=postgres + before_script: - - mysql -e 'create database ransack collate utf8_general_ci;' - - mysql -e 'use ransack;show variables like "%character%";show variables like "%collation%";' - - psql -c 'create database ransack;' -U postgres + - if [ "$DB" = "mysql" ]; + then + mysql -e 'create database ransack collate utf8_general_ci;'; + mysql -e 'use ransack;show variables like "%character%";show variables like "%collation%";'; + fi + + - if [ "$DB" = "postgres" ]; + then + psql -c 'create database ransack;' -U postgres; + fi addons: code_climate: repo_token: 8b701c4364d51a0217105e08c06922d600cec3d9e60d546a89e3ddfe46e0664e postgresql: "9.6"