Skip to content

Bump the rubocop-dependencies group with 1 update #190

Bump the rubocop-dependencies group with 1 update

Bump the rubocop-dependencies group with 1 update #190

Workflow file for this run

# https://docs.github.com/ja/actions/reference/workflow-syntax-for-github-actions
name: Spec
on:
push:
branches:
- main
paths:
- '.github/workflows/spec.yml'
- '.ruby-version'
- '**.gemspec'
- 'Gemfile'
- 'Rakefile'
- '**.rb'
pull_request:
paths:
- '.github/workflows/spec.yml'
- '.ruby-version'
- '**.gemspec'
- 'Gemfile'
- 'Rakefile'
- '**.rb'
jobs:
rspec:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
ruby: ['head', '3.2', '3.1']
gemfile: ['Gemfile', 'gemfiles/oldest.gemfile']
runs-on: ${{ matrix.os }}
env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
BUNDLE_GEMFILE: ${{ github.workspace }}/${{ matrix.gemfile }}
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
env:
# https://github.com/kachick/irb-power_assert/blob/104834846baf5caa1e8536a11c43acdd56fc849c/CONTRIBUTING.md#adding-dependencies-for-this-gem
BUNDLE_WITHOUT: development
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- run: bundle exec rake spec
env:
BUNDLE_WITHOUT: development