Skip to content

Commit

Permalink
fix(ci): correct rubocop condition for Ruby 3.3 in workflow
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
nicolastemciuc committed Dec 14, 2024
1 parent 93066da commit da22fec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@ jobs:
bundler-cache: true
- name: Run rubocop
run: bundle exec rubocop
if: ${{ matrix.ruby == '3.3' }}
if: ${{ matrix.ruby-version == '3.3' }}
- name: Run tests
run: bundle exec rspec

0 comments on commit da22fec

Please sign in to comment.