Skip to content

Upgraded RuboCop to 1.12. #17

Upgraded RuboCop to 1.12.

Upgraded RuboCop to 1.12. #17

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
entry:
- { ruby: "2.7" }
- { ruby: "3.0" }
- { ruby: "3.1" }
- { ruby: ruby-head, ignore: true }
- { ruby: jruby-head, ignore: true }
name: test (ruby=${{ matrix.entry.ruby }})
steps:
- uses: actions/checkout@v2
- name: Install Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.entry.ruby }}
- name: Run Tests
continue-on-error: ${{ matrix.entry.ignore || false }}
run: |
bundle install
bundle exec rspec