Skip to content

Merge pull request #11 from CraigJZ/support_ruby_3.3 #12

Merge pull request #11 from CraigJZ/support_ruby_3.3

Merge pull request #11 from CraigJZ/support_ruby_3.3 #12

Workflow file for this run

name: test_suite
on:
push:
branches: [ main ]
paths-ignore:
- '*.md'
- 'bin/*'
pull_request:
branches: [ main ]
paths-ignore:
- '*.md'
- 'bin/*'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: [ '3.3', '3.2', '3.1' ]
steps:
- uses: actions/checkout@v3
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rake test