Created
February 26, 2021 19:48
-
-
Save ignaciojonas/b98824c36d08c750e65d8c126b5352f4 to your computer and use it in GitHub Desktop.
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
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