Skip to content

Fix endless reply loop #4

Fix endless reply loop

Fix endless reply loop #4

Workflow file for this run

name: "S2 gem"
on:
pull_request:
push:
branches: [ "main" ]
jobs:
rubocop:
runs-on: ubuntu-latest
env:
RAILS_ENV: test
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Ruby and gems
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Rubocop
run: bundle exec rubocop
rspec:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Ruby and gems
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: RSpec
run: bundle exec rspec --format documentation