Skip to content

Drop CI check for Ruby 2.3 and 2.4 #179

Drop CI check for Ruby 2.3 and 2.4

Drop CI check for Ruby 2.3 and 2.4 #179

Workflow file for this run

name: build
on:
push:
schedule:
- cron: '20 5 * * 1'
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
ruby-version:
- "3"
- "3.2"
- "3.1"
- "3.0"
- "2.7"
- "2.6"
- "2.5"
- "jruby-9.4.3.0"
- "jruby-9.2.14.0"
- "truffleruby-23.0.0"
- "truffleruby-22.1.0"
steps:
- uses: actions/checkout@v2
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run tests
run: bundle exec rspec --format documentation