Skip to content

Bump simplycop from 2.6.0 to 2.7.0 #548

Bump simplycop from 2.6.0 to 2.7.0

Bump simplycop from 2.6.0 to 2.7.0 #548

Workflow file for this run

name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ["3.1", "3.2", "3.3"]
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Install dependencies
run: bundle install
- name: Rubocop
run: bundle exec rubocop
shell: bash
- name: Run tests
run: bundle exec rspec