Skip to content

Merge pull request #111 from zavan/patch-1 #91

Merge pull request #111 from zavan/patch-1

Merge pull request #111 from zavan/patch-1 #91

Workflow file for this run

name: CI
on: [push, pull_request]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
entry:
- { ruby: 2.7.2 }
- { ruby: 3.0.0 }
- { ruby: 3.1.2 }
- { ruby: 3.2.2 }
- { ruby: "ruby-head", ignore: true }
- { ruby: "jruby-9.3.9.0", ignore: true }
- { ruby: "jruby-head", ignore: true }
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.entry.ruby }}
bundler-cache: true
- name: Run tests
continue-on-error: ${{ matrix.entry.ignore || false }}
run: bundle exec rspec spec/