Skip to content

Bump actions/checkout from 3 to 4 #61

Bump actions/checkout from 3 to 4

Bump actions/checkout from 3 to 4 #61

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [2.7, "3.0", 3.1, 3.2]
bundler: [default]
gemfile:
- active_support_6
- active_support_7
include:
- { ruby: "2.3", gemfile: "active_support_3", bundler: "1" }
- { ruby: "2.4", gemfile: "active_support_4", bundler: "1" }
- { ruby: "2.5", gemfile: "active_support_4", bundler: "1" }
- { ruby: "2.5", gemfile: "active_support_5", bundler: "1" }
- { ruby: "2.6", gemfile: "active_support_5", bundler: "1" }
- { ruby: "2.6", gemfile: "active_support_6", bundler: "1" }
env:
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
steps:
# https://github.com/marketplace/actions/checkout
- uses: actions/checkout@v4
# https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler: ${{ matrix.bundler }}
bundler-cache: true # runs `bundle install` and caches gems automatically
- name: Run tests
run: bundle exec rake