Skip to content

Migrate CI to use multiple Rubies and add Ruby 3.2 #8

Migrate CI to use multiple Rubies and add Ruby 3.2

Migrate CI to use multiple Rubies and add Ruby 3.2 #8

Workflow file for this run

name: Wombat CI
on:
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: [3.2, 3.1, '3.0']
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