Skip to content

Bump activesupport from 7.0.4.3 to 7.0.7.2 #170

Bump activesupport from 7.0.4.3 to 7.0.7.2

Bump activesupport from 7.0.4.3 to 7.0.7.2 #170

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
functionality:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }} / ${{ matrix.gemfile }}
strategy:
matrix:
gemfile: [gemfiles/activesupport_5.2.gemfile, gemfiles/activesupport_6.0.gemfile, gemfiles/activesupport_6.1.gemfile, gemfiles/activesupport_7.0.gemfile, gemfiles/activesupport_edge.gemfile]
ruby: ["2.7", "3.0", "3.1", "3.2"]
exclude:
# Active Support requires Ruby >= 2.7 as of 7.0
- gemfile: "gemfiles/activesupport_7.0.gemfile"
ruby: "2.6"
- gemfile: "gemfiles/activesupport_edge.gemfile"
ruby: "2.6"
env:
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Tests
run: bundle exec rake test
- name: Specs
run: bundle exec rspec
style:
runs-on: ubuntu-latest
name: Rubocop
steps:
- name: Check out code
uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.2"
bundler-cache: true
- name: RuboCop
run: bundle exec rubocop