Skip to content

Bump rubocop-rspec from 2.24.1 to 2.25.0 #70

Bump rubocop-rspec from 2.24.1 to 2.25.0

Bump rubocop-rspec from 2.24.1 to 2.25.0 #70

Workflow file for this run

---
# 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: Ruby
on:
push:
branches: ['main']
pull_request:
branches: ['main']
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['3.1.2']
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
# To automatically get bug fixes and new Ruby versions for
# ruby/setup-ruby, change this to
# (see https://github.com/ruby/setup-ruby#versioning):
# uses: ruby/setup-ruby@v1, here v1.127.0
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
# runs 'bundle install' and caches installed gems automatically
bundler-cache: true
- name: Run tests
run: bundle exec rake rspec