Skip to content

Drop ActiveSupport 5.2/6.0 support #65

Drop ActiveSupport 5.2/6.0 support

Drop ActiveSupport 5.2/6.0 support #65

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['3.0', '3.1', '3.2']
activesupport: ['none', '6.1', '7.0']
experimental: [false]
exclude:
- ruby: '3.2'
activesupport: '6.1'
continue-on-error: ${{ matrix.experimental }}
env:
APPRAISAL: activesupport_${{ matrix.activesupport }}
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: |
bundle install
bundle exec appraisal $APPRAISAL bundle install
- name: Run tests
run: bundle exec appraisal $APPRAISAL rake