We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1cebf6 commit ec2b181Copy full SHA for ec2b181
1 file changed
.github/workflows/tests.yml
@@ -25,6 +25,8 @@ jobs:
25
matrix:
26
os: [ "ubuntu-22.04", "macos-15-intel" ] # , windows-latest ]
27
ruby-version: [
28
+ "2.4",
29
+ "2.5",
30
"2.6",
31
"2.7",
32
"3.0",
@@ -73,4 +75,6 @@ jobs:
73
75
run: bundle exec rspec
74
76
77
- name: Run rubocop
78
+ # rubocop does not work on old versions of Ruby.
79
+ if: ${{ matrix.ruby-version != '2.4' && matrix.ruby-version != '2.5' }}
80
run: bundle exec rubocop
0 commit comments