Skip to content

Instantly share code, notes, and snippets.

@ignaciojonas
Created February 26, 2021 19:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ignaciojonas/b98824c36d08c750e65d8c126b5352f4 to your computer and use it in GitHub Desktop.
Save ignaciojonas/b98824c36d08c750e65d8c126b5352f4 to your computer and use it in GitHub Desktop.
jobs:
rubocop:
name: Rubocop
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- uses: actions/setup-ruby@v1
with:
ruby-version: 2.7.2
- name: Install Rubocop
run: |
gem install rubocop
gem install rubocop-rails
gem install rubocop-rspec
- name: Run Rubocop
run: rubocop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment