Skip to content

Add Ruby 4.0 support to CI test matrix #70

Add Ruby 4.0 support to CI test matrix

Add Ruby 4.0 support to CI test matrix #70

Workflow file for this run

name: Test suite
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
ruby: ["2.7", "3.1", "3.2", "3.3", "3.4", "4.0", "ruby-head"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rspec
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}