Skip to content

Merge pull request #118 from MidwestAccessCoalition/update-gemspec #384

Merge pull request #118 from MidwestAccessCoalition/update-gemspec

Merge pull request #118 from MidwestAccessCoalition/update-gemspec #384

Workflow file for this run

name: build
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: ["3.0", 3.1, 3.2, 3.3]
rails: [rails_6, rails_6_1, rails_7, rails_7_1, rails_7_2]
twilio: [twilio_6, twilio_7]
exclude:
- rails: rails_7_2 # Rails 7.2 requires Ruby 3.1
ruby: "3.0"
env:
BUNDLE_GEMFILE: gemfiles/${{matrix.rails}}__${{ matrix.twilio }}.gemfile
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rspec