Skip to content

CORE-655 Fix more issues with unsplatted keyword arguments in Ruby 3 #3

CORE-655 Fix more issues with unsplatted keyword arguments in Ruby 3

CORE-655 Fix more issues with unsplatted keyword arguments in Ruby 3 #3

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches:
- main
jobs:
tests:
timeout-minutes: 30
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
bundler-cache: true
- name: Setup
run: bundle exec rake db:create db:schema:load db:seed --trace
- name: Test
run: bundle exec rake spec