Skip to content

Fix build warning on Ruby 3.3 #79

Fix build warning on Ruby 3.3

Fix build warning on Ruby 3.3 #79

Workflow file for this run

name: tests
on:
push:
pull_request:
schedule:
- cron: '11 11 14 * *' # at 11:11 am on the 14th of every month
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ '2.4', '2.7', '3.0', '3.1', '3.2', '3.3', 'ruby-head', 'jruby-head' ]
steps:
- uses: actions/checkout@v2
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: bundle install --jobs 4
- name: Test with Rake
run: bundle exec rake
- uses: codecov/codecov-action@v3
if: matrix.ruby == '3.2'