Skip to content

Bump rubocop from 1.90.0 to 1.91.0 #71

Bump rubocop from 1.90.0 to 1.91.0

Bump rubocop from 1.90.0 to 1.91.0 #71

Workflow file for this run

name: Lint and Test
on:
push:
branches-ignore:
- main
workflow_dispatch: {}
env:
RAILS_ENV: test
jobs:
lint:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
ruby-version: ["4.0"]
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Lint
run: bundle exec rubocop
test:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
ruby-version: ["4.0"]
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run tests
run: bundle exec rspec spec