Skip to content

0.3.0: Ruby 3.3 metrics #11

0.3.0: Ruby 3.3 metrics

0.3.0: Ruby 3.3 metrics #11

Workflow file for this run

name: Linters
on:
pull_request:
push:
branches:
- '**'
tags-ignore:
- 'v*'
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
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.3"
bundler-cache: true
- name: Run Rubocop
run: bundle exec rake rubocop