Skip to content

Bump rubocop from 1.54.0 to 1.54.1 #1132

Bump rubocop from 1.54.0 to 1.54.1

Bump rubocop from 1.54.0 to 1.54.1 #1132

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: [ "2.7", "3.0", "3.1" ]
name: Test Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run type check
run: bin/typecheck
- name: Lint Ruby files
run: bin/style --config .rubocop.yml
- name: Run tests
run: bin/test