Skip to content

Commit 431ab1e

Browse files
committed
find status of CI with various RuboCop versions
1 parent 8e93722 commit 431ab1e

1 file changed

Lines changed: 10 additions & 3 deletions

File tree

.github/workflows/checks.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,20 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
ruby: ['2.3', '2.4', '2.5', '2.6', '2.7', '3.0']
15-
rubocop: ['0.63.1', '< 1.0']
14+
ruby: ['2.4', '2.5', '2.6', '2.7', '3.0']
15+
rubocop: ['0.63.1', '0.81.0', '0.82.0', '0.83.0', '0.84.0', '0.85.0', '0.86.0', '0.87.0', '0.88.0', '0.89.0', '0.90.0', '0.91.0', '0.92.0', '0.93.0', '0.93.1']
16+
include:
17+
- ruby: '2.3'
18+
rubocop: '0.63.1'
19+
- ruby: '2.3'
20+
rubocop: '0.81.0'
1621
fail-fast: false
1722
steps:
1823
- uses: actions/checkout@v2
1924
- name: configure Gemfile.local
20-
run: echo "gem 'rubocop', '${{ matrix.rubocop }}'" > Gemfile.local
25+
run: |
26+
echo "gem 'rubocop-ast', '< 0.7.0'" >> Gemfile.local
27+
echo "gem 'rubocop', '${{ matrix.rubocop }}'" > Gemfile.local
2128
- uses: ruby/setup-ruby@v1
2229
with:
2330
ruby-version: ${{ matrix.ruby }}

0 commit comments

Comments
 (0)