Skip to content

Bump rbtree3 to v0.7.1 (#14) #18

Bump rbtree3 to v0.7.1 (#14)

Bump rbtree3 to v0.7.1 (#14) #18

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: [2.7, 3.1, 3.2]
steps:
- uses: actions/checkout@v3
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Install dependencies
run: |
gem update --system
bundle install
- name: Run tests
run: bundle exec rake test