Skip to content

Update rubocop requirement from ~> 1.57.0 to ~> 1.58.0 #121

Update rubocop requirement from ~> 1.57.0 to ~> 1.58.0

Update rubocop requirement from ~> 1.57.0 to ~> 1.58.0 #121

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
rspec:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['3.2', '3.1', '3.0']
steps:
- name: Checkout the repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run RSpec
run: |
bundle exec rake coverage
- name: Upload coverage report
uses: codecov/codecov-action@v3
with:
name: ${{ matrix.ruby }}
file: ./coverage/coverage.xml
fail_ci_if_error: false