Skip to content

Allow set operation to take a lambda #119

Allow set operation to take a lambda

Allow set operation to take a lambda #119

Workflow file for this run

name: Ruby head
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
continue-on-error: true
strategy:
matrix:
gemfile: [ activerecord_6.1, activerecord_7.0, activerecord_7.1 ]
env:
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: head
bundler-cache: true
- name: Run tests
# Allow tests to run on Ruby head without failing the pipeline
run: bundle exec rspec || true