Skip to content

Bump FancyIRB to latest IRB API, fixes #56, release v4.0.6 #48

Bump FancyIRB to latest IRB API, fixes #56, release v4.0.6

Bump FancyIRB to latest IRB API, fixes #56, release v4.0.6 #48

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
name: Test
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
ruby:
- 3.2
- 3.1
- '3.0'
- jruby
- truffleruby
os:
- ubuntu-latest
runs-on: ${{matrix.os}}
if: "!contains(github.event.head_commit.message, '[skip ci]')"
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{matrix.ruby}}
- name: Install dependencies
run: bundle install --jobs 4 --retry 3
- name: Run tests
run: bundle exec rake