Skip to content
This repository was archived by the owner on Mar 12, 2025. It is now read-only.

build(deps): bump rubocop-factory_bot from 2.26.0 to 2.26.1 #99

build(deps): bump rubocop-factory_bot from 2.26.0 to 2.26.1

build(deps): bump rubocop-factory_bot from 2.26.0 to 2.26.1 #99

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: ["3.1", "3.0"]
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up Ruby
uses: ruby/setup-ruby@78c01b705fd9d5ad960d432d3a0cfa341d50e410 # v1.179.1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Build gem
run: bundle exec rake
- name: Run RuboCop
run: bundle exec rake rubocop
- name: Run tests
run: bundle exec rake spec