steveklabnik/request_store

View on GitHub
.github/workflows/ci.yml

Summary

Maintainability
Test Coverage
name: CI

on:
  pull_request:

  push:
    branches: [master]

jobs:
  build:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby:
          - '3.0'
          - 3.1
          - 3.2
          - 3.3
          - ruby-head
          - jruby-9.1
          - jruby-9.2
          - jruby-9.3
          - jruby-head
          - truffleruby-head

    steps:
    - uses: actions/checkout@v4
    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
        bundler-cache: true # 'bundle install' and cache
    - name: Test
      run: bundle exec rake