Skip to content

Bump rubocop from 1.49.0 to 1.66.1 #41

Bump rubocop from 1.49.0 to 1.66.1

Bump rubocop from 1.49.0 to 1.66.1 #41

Workflow file for this run

name: Ruby
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }}
strategy:
matrix:
ruby:
- '3.1.2'
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Test & publish code coverage
uses: paambaati/codeclimate-action@v3.2.0
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageCommand: bundle exec rake
coverageLocations: ${{ github.workspace }}/coverage/coverage.json:simplecov
debug: true