Skip to content

Bump activesupport from 8.1.3 to 8.1.3.1 #592

Bump activesupport from 8.1.3 to 8.1.3.1

Bump activesupport from 8.1.3 to 8.1.3.1 #592

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
functionality:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }} / ${{ matrix.gemfile }}
strategy:
fail-fast: false
matrix:
gemfile:
- Gemfile
- gemfiles/activesupport_7.0.gemfile
- gemfiles/activesupport_7.1.gemfile
- gemfiles/activesupport_7.2.gemfile
- gemfiles/activesupport_8.0.gemfile
- gemfiles/activesupport_edge.gemfile
ruby: ["3.3", "3.4", "4.0"]
env:
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
steps:
- name: Check out code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@95ef2b042f9d7a56d8268cba8559e2842e2ad01b # v1.321.0
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@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: ruby/setup-ruby@95ef2b042f9d7a56d8268cba8559e2842e2ad01b # v1.321.0
with:
bundler-cache: true
- name: RuboCop
run: bundle exec rubocop