WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

RuboCop: resolve Style/SuperArguments #102

RuboCop: resolve Style/SuperArguments

RuboCop: resolve Style/SuperArguments #102

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
runs-on: "ubuntu-latest"
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
ruby_version: ["2.6", "2.7", "3.0", "3.1", "3.2", "3.3"]
experimental: [false]
include:
- ruby_version: "ruby-head"
experimental: true
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby_version }}
bundler-cache: true
- run: "bundle exec rubocop lib/ spec/"
- run: "bundle exec rspec spec/ -b"