2020-12-01 08:41:54 -05:00
|
|
|
name: test
|
2020-11-30 09:04:34 -05:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
sqlite3:
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
rails:
|
2021-12-16 07:56:53 -05:00
|
|
|
- v7.0.0
|
2021-06-24 19:06:13 -04:00
|
|
|
- v6.1.4
|
2021-06-25 09:02:12 -04:00
|
|
|
- v6.0.4
|
2020-11-30 09:04:34 -05:00
|
|
|
- 6-0-stable
|
|
|
|
- 5-2-stable
|
|
|
|
- v5.2.4
|
2020-12-01 08:16:15 -05:00
|
|
|
ruby:
|
2021-07-08 08:38:03 -04:00
|
|
|
- 3.0.2
|
|
|
|
- 2.7.4
|
|
|
|
- 2.6.7
|
2020-12-25 09:57:22 -05:00
|
|
|
exclude:
|
2021-12-16 07:56:53 -05:00
|
|
|
- rails: v7.0.0
|
|
|
|
ruby: 2.6.7
|
2020-12-25 09:57:22 -05:00
|
|
|
- rails: v5.2.4
|
2021-07-08 08:38:03 -04:00
|
|
|
ruby: 3.0.2
|
2020-12-25 09:57:22 -05:00
|
|
|
- rails: 5-2-stable
|
2021-07-08 08:38:03 -04:00
|
|
|
ruby: 3.0.2
|
2020-11-30 09:04:34 -05:00
|
|
|
env:
|
|
|
|
DB: sqlite3
|
|
|
|
RAILS: ${{ matrix.rails }}
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Ruby
|
|
|
|
uses: ruby/setup-ruby@v1
|
|
|
|
with:
|
2020-12-01 08:16:15 -05:00
|
|
|
ruby-version: ${{ matrix.ruby }}
|
2020-11-30 09:04:34 -05:00
|
|
|
- name: Install dependencies
|
|
|
|
run: bundle install
|
|
|
|
- name: Run tests
|
|
|
|
run: bundle exec rspec
|
|
|
|
|
|
|
|
mysql:
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
rails:
|
2021-12-16 07:56:53 -05:00
|
|
|
- v7.0.0
|
2021-06-24 19:06:13 -04:00
|
|
|
- v6.1.4
|
2021-06-25 09:02:12 -04:00
|
|
|
- v6.0.4
|
2020-11-30 09:04:34 -05:00
|
|
|
- 6-0-stable
|
|
|
|
- 5-2-stable
|
|
|
|
- v5.2.4
|
2020-12-01 08:16:15 -05:00
|
|
|
ruby:
|
2021-07-08 08:38:03 -04:00
|
|
|
- 3.0.2
|
|
|
|
- 2.7.4
|
|
|
|
- 2.6.7
|
2020-12-25 09:57:22 -05:00
|
|
|
exclude:
|
2021-12-16 07:56:53 -05:00
|
|
|
- rails: v7.0.0
|
|
|
|
ruby: 2.6.7
|
2020-12-25 09:57:22 -05:00
|
|
|
- rails: v5.2.4
|
2021-07-08 08:38:03 -04:00
|
|
|
ruby: 3.0.2
|
2020-12-25 09:57:22 -05:00
|
|
|
- rails: 5-2-stable
|
2021-07-08 08:38:03 -04:00
|
|
|
ruby: 3.0.2
|
2020-11-30 09:04:34 -05:00
|
|
|
env:
|
|
|
|
DB: mysql
|
|
|
|
RAILS: ${{ matrix.rails }}
|
|
|
|
MYSQL_USERNAME: root
|
|
|
|
MYSQL_PASSWORD: root
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Ruby
|
|
|
|
uses: ruby/setup-ruby@v1
|
|
|
|
with:
|
2020-12-01 08:16:15 -05:00
|
|
|
ruby-version: ${{ matrix.ruby }}
|
2020-11-30 09:04:34 -05:00
|
|
|
- name: Startup MySQL
|
|
|
|
run: |
|
|
|
|
sudo systemctl start mysql.service
|
|
|
|
- name: Setup databases
|
|
|
|
run: |
|
|
|
|
mysql --user=root --password=root --host=127.0.0.1 -e 'create database ransack collate utf8_general_ci;';
|
|
|
|
mysql --user=root --password=root --host=127.0.0.1 -e 'use ransack;show variables like "%character%";show variables like "%collation%";';
|
|
|
|
- name: Install dependencies
|
|
|
|
run: bundle install
|
|
|
|
- name: Run tests
|
|
|
|
run: bundle exec rspec
|
|
|
|
|
|
|
|
postgres:
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
rails:
|
2021-12-16 07:56:53 -05:00
|
|
|
- v7.0.0
|
2021-06-24 19:06:13 -04:00
|
|
|
- v6.1.4
|
2021-06-25 09:02:12 -04:00
|
|
|
- v6.0.4
|
2020-11-30 09:04:34 -05:00
|
|
|
- 6-0-stable
|
|
|
|
- 5-2-stable
|
|
|
|
- v5.2.4
|
2020-12-01 08:16:15 -05:00
|
|
|
ruby:
|
2021-07-08 08:38:03 -04:00
|
|
|
- 3.0.2
|
|
|
|
- 2.7.4
|
|
|
|
- 2.6.7
|
2020-12-25 09:57:22 -05:00
|
|
|
exclude:
|
2021-12-16 07:56:53 -05:00
|
|
|
- rails: v7.0.0
|
|
|
|
ruby: 2.6.7
|
2020-12-25 09:57:22 -05:00
|
|
|
- rails: v5.2.4
|
2021-07-08 08:38:03 -04:00
|
|
|
ruby: 3.0.2
|
2020-12-25 09:57:22 -05:00
|
|
|
- rails: 5-2-stable
|
2021-07-08 08:38:03 -04:00
|
|
|
ruby: 3.0.2
|
2020-11-30 09:04:34 -05:00
|
|
|
env:
|
|
|
|
DB: postgres
|
|
|
|
RAILS: ${{ matrix.rails }}
|
|
|
|
DATABASE_USERNAME: postgres
|
|
|
|
DATABASE_PASSWORD: postgres
|
|
|
|
DATABASE_HOST: 127.0.0.1
|
|
|
|
services:
|
|
|
|
postgres:
|
|
|
|
image: postgres
|
|
|
|
ports:
|
|
|
|
- 5432:5432
|
|
|
|
env:
|
|
|
|
POSTGRES_PASSWORD: postgres
|
|
|
|
POSTGRES_HOST_AUTH_METHOD: trust
|
|
|
|
# Set health checks to wait until postgres has started
|
|
|
|
options: >-
|
|
|
|
--health-cmd pg_isready
|
|
|
|
--health-interval 10s
|
|
|
|
--health-timeout 5s
|
|
|
|
--health-retries 5
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Ruby
|
|
|
|
uses: ruby/setup-ruby@v1
|
|
|
|
with:
|
2020-12-01 08:16:15 -05:00
|
|
|
ruby-version: ${{ matrix.ruby }}
|
2020-11-30 09:04:34 -05:00
|
|
|
- name: Setup databases
|
|
|
|
run: |
|
|
|
|
psql -h localhost -p 5432 -W postgres -c 'create database ransack;' -U postgres;
|
|
|
|
- name: Install dependencies
|
|
|
|
run: bundle install
|
|
|
|
- name: Run tests
|
|
|
|
run: bundle exec rspec
|
2020-12-28 11:06:34 -05:00
|
|
|
|
|
|
|
bug-report-templates:
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Ruby
|
|
|
|
uses: ruby/setup-ruby@v1
|
|
|
|
with:
|
2021-07-08 08:38:03 -04:00
|
|
|
ruby-version: 3.0.2
|
2020-12-28 11:06:34 -05:00
|
|
|
- name: Install dependencies
|
|
|
|
run: bundle install
|
|
|
|
- name: Run bug report templates
|
|
|
|
run: |
|
|
|
|
ruby bug_report_templates/test-ransacker-arel-present-predicate.rb
|
|
|
|
ruby bug_report_templates/test-ransack-scope-and-column-same-name.rb
|
|
|
|
rm Gemfile Gemfile.lock
|