Skip to content

Support block syntax in AllowIncompatibleOverride #502

Support block syntax in AllowIncompatibleOverride

Support block syntax in AllowIncompatibleOverride #502

Workflow file for this run

name: CI
on: [push, pull_request]
env:
SRB_SKIP_GEM_RBIS: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: [ '2.7', '3.0', '3.1', '3.2' ]
name: Test Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Lint Ruby files
run: bin/rubocop
- name: Verify documentation is up to date
run: bundle exec rake generate_cops_documentation
- name: Run tests
run: bin/rspec