Merge pull request #276 from webmachine/ruby-3.3 #80
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: "ubuntu-latest" | |
continue-on-error: ${{ matrix.experimental }} | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby_version: ["2.6", "2.7", "3.0", "3.1", "3.2", "3.3"] | |
experimental: [false] | |
include: | |
- ruby_version: "ruby-head" | |
experimental: true | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby_version }} | |
bundler-cache: true | |
- run: "bundle exec rubocop lib/ spec/" | |
- run: "bundle exec rspec spec/ -b" |