Skip to content

Bump GH actions/checkout and test on Ruby 3.3 #8

Bump GH actions/checkout and test on Ruby 3.3

Bump GH actions/checkout and test on Ruby 3.3 #8

Workflow file for this run

name: tests
on:
push:
branches: [master]
paths-ignore: ['README.md']
pull_request:
branches: [master]
paths-ignore: ['README.md']
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['2.6', '2.7', '3.0', '3.1', '3.2', '3.3']
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: rspec
run: bundle exec rake spec