Skip to content

Remove multi_json as dependency in favor of std-lib json #42

Remove multi_json as dependency in favor of std-lib json

Remove multi_json as dependency in favor of std-lib json #42

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: ['2.7', '3.0', '3.1', '3.2', '3.3']
rails: ['6.1', '7.0', '7.1', 'edge']
exclude:
- ruby: '2.7'
rails: 'edge'
- ruby: '3.0'
rails: 'edge'
env:
BUNDLE_GEMFILE: gemfiles/rails_${{ matrix.rails }}.gemfile
name: Ruby ${{ matrix.ruby }} / Rails ${{ matrix.rails }}
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Ruby Tests
run: bundle exec rake