You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This action is no longer maintained. Instead, consider this fork that is maintained by the Standard Ruby team at standardrb/standard-ruby-action
β StandardRB Action
A GitHub Action to run StandardRB against your code and create annotations in the GitHub UI.
π Introduction
GitHub Actions are an amazing new tool that can dramatically improve productivity while using the GitHub platform. While it is not hard to write a custom GitHub action to run StandardRB on your codebase, this action takes that functionality one step further using the checks API. After the StandardRB Linter Action runs StandardRB against your code, it will create annotations that you can easily view, matched up with the offending code.
π‘ Usage
Add the following to your GitHub action workflow to use StandardRB Linter Action:
Due to the GitHub Check Runs API, we can only return 50 annotations per run. See here for more info.
This is not an issue if you remove this action from your workflow and replace with bundle exec standardrb --format github --parallel as mentioned in the caution above.