You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
Github Rubocop Action
1.5.6
Lint your Ruby code in parallel to your builds.
- Ruby 2.6.3
- Rubocop + Rubocop Performance
In order to use this action you will need to specify the $GITHUB_TOKEN
alongside the check:
# Worflow example
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Rubocop checks
uses: luizfonseca/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}