Skip to content

Add ActiveSupport Supports #69

Add ActiveSupport Supports

Add ActiveSupport Supports #69

Workflow file for this run

name: linux
on:
- push
- pull_request
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
ruby:
- '3.2'
- '3.3'
- '3.4'
os:
- ubuntu-latest
gemfile:
- activesupport
- no-activesupport
env:
BUNDLE_GEMFILE: spec/gemfiles/${{ matrix.gemfile }}.gemfile
name: Ruby ${{ matrix.ruby }} unit testing on ${{ matrix.os }} (${{ matrix.gemfile }})
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: unit testing
env:
CI: true
run: |
bundle exec rake spec