Update Ruby version from 10.0.2.0 to 10.0.4.0 #208
Workflow file for this run
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: reviewdog | |
| on: | |
| - pull_request | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| rubocop: | |
| name: runner / rubocop | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v1 | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: jruby-10 | |
| - name: rubocop | |
| uses: reviewdog/action-rubocop@v2 | |
| with: | |
| rubocop_version: gemfile | |
| rubocop_extensions: rubocop-minitest rubocop-rake rubocop-performance rubocop-sequel | |
| reporter: github-pr-review # Default is github-pr-check |