Skip to content

Bump rubocop from 1.60.2 to 1.61.0 #535

Bump rubocop from 1.60.2 to 1.61.0

Bump rubocop from 1.60.2 to 1.61.0 #535

Workflow file for this run

name: Run Rspec Tests
on:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Run Rubocop
run: bin/rubocop --format clang
- name: Run RSpec tests
run: bin/rspec --format progress
- name: Ensure alpha version
run: grep alpha $(find . -type f -name version.rb)
- name: Ensure no git diff
run: git diff --exit-code && git diff-index --quiet --cached HEAD