Fix rubocop long line #79
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push, pull_request] | |
jobs: | |
test: | |
strategy: | |
matrix: | |
ruby: [3.1, 3.2, 3.3] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
ruby-version: ${{ matrix.ruby }} | |
- name: Test Ruby ${{ matrix.ruby }} | |
run: bundle exec rake | |
if: matrix.ruby != '3.1' | |
- name: Test and publish coverage for Ruby ${{ matrix.ruby }} | |
uses: paambaati/codeclimate-action@v2.7.5 | |
env: | |
CC_TEST_REPORTER_ID: 8bc2d8e54331569aeb442094c21cb64a58d6efa0670f65ff00d9ae887f63c0b4 | |
with: | |
coverageCommand: bundle exec rake | |
if: matrix.ruby == '3.1' |