Skip to content

Bump rubocop from 1.69.0 to 1.69.1 #114

Bump rubocop from 1.69.0 to 1.69.1

Bump rubocop from 1.69.0 to 1.69.1 #114

Workflow file for this run

name: Ruby
on:
push:
branches:
- main
pull_request:
env:
RUBY_VERSION: '3.3'
jobs:
rubocop:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ env.RUBY_VERSION }}
bundler-cache: true
- name: Run Rubocop
run: bundle exec rubocop
rspec:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- 3.0
- 3.1
- 3.2
- 3.3
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run RSpec
run: bundle exec rake