Skip to content

Merge pull request #8 from Shopify/centralize_ruby_version #2

Merge pull request #8 from Shopify/centralize_ruby_version

Merge pull request #8 from Shopify/centralize_ruby_version #2

Workflow file for this run

name: Ruby
on: push
jobs:
test:
name: "Tests (on Ruby ${{ matrix.ruby_version }})"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby_version: [3.0, 3.1, 3.2, 3.3]
steps:
- uses: actions/checkout@v2
- name: Set up Ruby ${{ matrix.ruby_version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby_version }}
bundler-cache: true
- name: Run tests
run: bundle exec rake test