Skip to content

Bump rubocop from 1.65.0 to 1.65.1 (#104) #213

Bump rubocop from 1.65.0 to 1.65.1 (#104)

Bump rubocop from 1.65.0 to 1.65.1 (#104) #213

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
name: On Ruby ${{ matrix.ruby }}
strategy:
matrix:
ruby:
- '2.7.6'
- '3.0.4'
- '3.1.2'
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run the CI task, which runs tests, rubocop and builds the gem
run: bundle exec rake ci