Skip to content

Returns nil if index is not given #47

Returns nil if index is not given

Returns nil if index is not given #47

Workflow file for this run

name: Ruby
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }}
strategy:
matrix:
ruby:
- '3.3'
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Run setup
run: bin/setup
- name: Run the default task
run: bundle exec rake
- name: Run steep check
run: bundle exec steep check