0.13.1: Fix Ruby 2.x compatibility #16
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint Ruby | |
on: | |
push: | |
branches: | |
- '**' | |
tags-ignore: | |
- 'v*' | |
paths: | |
- "gemfiles/*" | |
- "Gemfile" | |
- "**/*.rb" | |
- "**/*.gemspec" | |
- ".github/workflows/lint.yml" | |
pull_request: | |
paths: | |
- "gemfiles/*" | |
- "Gemfile" | |
- "**/*.rb" | |
- "**/*.gemspec" | |
- ".github/workflows/lint.yml" | |
jobs: | |
rubocop: | |
# Skip running tests for local pull requests (use push event instead), run only for foreign ones | |
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.owner.login != github.event.pull_request.base.repo.owner.login | |
name: RuboCop | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: "3.3" | |
bundler-cache: true | |
- name: Lint Ruby code with RuboCop | |
run: | | |
bundle exec rubocop |