Fix warnings that started popping up when running on ruby 3 #155
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake | |
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby | |
name: Ruby | |
on: [pull_request] | |
env: | |
TESTOPTS: --verbose | |
jobs: | |
rubocop: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.7 | |
- name: Setup | |
run: | | |
gem install bundler -v 2.4.22 | |
bundle install --jobs=3 --retry=3 | |
- name: Run rubocop | |
run: bundle exec rubocop | |
test: | |
runs-on: ubuntu-latest | |
needs: rubocop | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby_version: | |
- 2.7.0 | |
- 3.0.0 | |
- 3.2.0 | |
concurrent_ruby_ext: | |
- 'true' | |
- 'false' | |
db: | |
- postgresql | |
- mysql | |
- sqlite3 | |
include: | |
- db: postgresql | |
conn_string: postgres://postgres@localhost/travis_ci_test | |
- db: mysql | |
conn_string: mysql2://[email protected]/travis_ci_test | |
- db: sqlite3 | |
conn_string: sqlite:/ | |
exclude: | |
- db: mysql | |
ruby_version: 3.0.0 | |
- db: mysql | |
ruby_version: 3.2.0 | |
- db: mysql | |
concurrent_ruby_ext: 'true' | |
- db: sqlite3 | |
ruby_version: 3.0.0 | |
- db: sqlite3 | |
ruby_version: 3.2.0 | |
- db: sqlite3 | |
concurrent_ruby_ext: 'true' | |
- db: postgresql | |
ruby_version: 3.0.0 | |
concurrent_ruby_ext: 'true' | |
- db: postgresql | |
ruby_version: 3.2.0 | |
concurrent_ruby_ext: 'true' | |
services: | |
postgres: | |
image: postgres:12.1 | |
ports: ['5432:5432'] | |
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 | |
env: | |
POSTGRES_DB: travis_ci_test | |
mariadb: | |
image: mariadb:10 | |
ports: ['3306:3306'] | |
env: | |
MYSQL_ALLOW_EMPTY_PASSWORD: 'yes' | |
MYSQL_DATABASE: travis_ci_test | |
redis: | |
image: redis:latest | |
ports: ['6379:6379'] | |
env: | |
DB: ${{ matrix.db }} | |
DB_CONN_STRING: ${{ matrix.conn_string }} | |
CONCURRENT_RUBY_EXT: "${{ matrix.concurrent_ruby_ext }}" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Ruby | |
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby, | |
# change this to (see https://github.com/ruby/setup-ruby#versioning): | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby_version }} | |
- name: Install dependencies | |
run: .github/install_dependencies.sh | |
- name: Run tests | |
run: bundle exec rake test |