Skip to content

Commit da22fec

Browse files
fix(ci): correct rubocop condition for Ruby 3.3 in workflow
Fixed the `if` condition that caused the `rubocop` job to not run for Ruby 3.3. The condition was incorrectly referencing `matrix.ruby` instead of `matrix.ruby-version`, resulting in the step being skipped.
1 parent 93066da commit da22fec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,6 @@ jobs:
5050
bundler-cache: true
5151
- name: Run rubocop
5252
run: bundle exec rubocop
53-
if: ${{ matrix.ruby == '3.3' }}
53+
if: ${{ matrix.ruby-version == '3.3' }}
5454
- name: Run tests
5555
run: bundle exec rspec

0 commit comments

Comments
 (0)