Skip to content
This repository has been archived by the owner on Jul 31, 2023. It is now read-only.

Update irb requirement from ~> 1.7.1 to ~> 1.7.4 #128

Update irb requirement from ~> 1.7.1 to ~> 1.7.4

Update irb requirement from ~> 1.7.1 to ~> 1.7.4 #128

Workflow file for this run

# https://docs.github.com/ja/actions/reference/workflow-syntax-for-github-actions
name: Test
on:
push:
branches:
- main
paths:
- '.github/workflows/test_behaviors.yml'
- 'lib/**'
- 'test/**'
- 'spec/**'
- '.rspec'
- '**.gemspec'
- 'Gemfile'
- 'Rakefile'
pull_request:
paths:
- '.github/workflows/test_behaviors.yml'
- 'lib/**'
- 'test/**'
- 'spec/**'
- '.rspec'
- '**.gemspec'
- 'Gemfile'
- 'Rakefile'
jobs:
test_behaviors:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
# Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
ruby: [head, '3.2', '3.1']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
env:
BUNDLE_WITHOUT: development
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- run: bundle exec rake test_behaviors
env:
BUNDLE_WITHOUT: development