Skip to content

Release 3.9.1 - Aggregation fixes and improvements (#379) #536

Release 3.9.1 - Aggregation fixes and improvements (#379)

Release 3.9.1 - Aggregation fixes and improvements (#379) #536

Workflow file for this run

name: CI
on: push
jobs:
test:
name: Ruby ${{ matrix.ruby }} on ubuntu-latest
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: ['2.6', '2.7', '3.0', '3.1', '3.2', '3.3', 'ruby-head', 'jruby-9.4.8.0', 'truffleruby-22.3.1']
# Windows on macOS builds started failing, so they are disabled for now
# platform: [windows-2019, macOS-10.14, ubuntu-18.04]
# exclude:
# ...
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run test suite
run: bundle exec rake test