Created
March 3, 2020 10:51
-
-
Save rpbaltazar/6993d0158aff623c9b9fadb47d7f5187 to your computer and use it in GitHub Desktop.
Rubocop action configuration
This file contains hidden or 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
| check_name: 'Rubocop Results' | |
| versions: | |
| - rubocop: '0.75.1' | |
| - rubocop-rails: '2.3.2' | |
| - rubocop-performance: '1.5.0' | |
| - rubocop-rspec: '1.36.0' |
This file contains hidden or 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
| name: Rubocop | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Rubocop Linter | |
| uses: andrewmcodes/rubocop-linter-action@v3.0.0 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment