Sha256: a7e8bc1388901d4e4d3d99ddb032a0c806b16fc9ed5f9e073c987585d6f25243
Contents?: true
Size: 820 Bytes
Versions: 25
Compression:
Stored size: 820 Bytes
Contents
name: Rubocop on: [push, pull_request] jobs: build: name: Rubocop runs-on: ${{ matrix.os }} env: BUNDLE_JOBS: 4 BUNDLE_RETRY: 3 strategy: matrix: os: [ubuntu-latest] ruby: [ 2.7 ] steps: - uses: actions/checkout@v2 - uses: actions/cache@v2 with: path: /home/runner/bundle key: bundle-use-ruby-gems-${{ hashFiles('**/Gemfile.lock') }} restore-keys: | bundle-use-ruby-gems- - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - name: Bundle install run: | gem install bundler -v 2.1.4 bundle config path /home/runner/bundle bundle install - name: Ruby linter run: bundle exec rubocop
Version data entries
25 entries across 25 versions & 3 rubygems