We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c34938 commit bfd609bCopy full SHA for bfd609b
.github/workflows/ruby.yml
@@ -25,14 +25,20 @@ jobs:
25
runs-on: ubuntu-latest
26
strategy:
27
matrix:
28
- ruby: [ '3.0.1', '3.1.0', '3.2.0', '3.3.0' ]
+ ruby: [ '3.0.0', '3.1.0', '3.2.0', '3.3.0' ]
29
steps:
30
- uses: actions/checkout@v3
31
- name: Set up Ruby ${{ matrix.ruby }}
32
uses: ruby/setup-ruby@v1
33
with:
34
ruby-version: ${{ matrix.ruby }}
35
bundler-cache: true
36
+ - name: Install rubocop 1.78.0 for Ruby 3.0.0
37
+ if: matrix.ruby == '3.0.0'
38
+ run: |
39
+ echo "Installing rubocop 1.78.0 for Ruby 3.0.0"
40
+ bundle add rubocop --version 1.78.0 || true
41
+ bundle install
42
- name: Run linting
43
run: |
44
bundle exec rubocop
0 commit comments