Skip to content

Merge pull request #82 from Shopify/grcooper/v1.3.4 #289

Merge pull request #82 from Shopify/grcooper/v1.3.4

Merge pull request #82 from Shopify/grcooper/v1.3.4 #289

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: [ '2.7', '3.2' ]
actionpack: [ '6.1', '7.0', 'edge' ]
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/actionpack_${{ matrix.actionpack }}.gemfile
BUNDLE_WITH: test
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run tests
run: bundle exec rake test
timeout-minutes: 3