Skip to content

Support passing blocks to strategy methods #24

Support passing blocks to strategy methods

Support passing blocks to strategy methods #24

Workflow file for this run

---
name: matrix-testing
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
experimental: [false]
ruby-version: ["2.7", "3.0", "3.1", "3.2", "jruby-9.3"]
include:
- ruby-version: jruby-9.4
experimental: true
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- run: bundle exec rspec
- run: bundle exec rubocop