Sha256: 4a096c68a3f24f3b360fe4082e6d91d4d615dcdd86f629bb3d5a7b654dccac58
Contents?: true
Size: 715 Bytes
Versions: 3
Compression:
Stored size: 715 Bytes
Contents
name: Linting on: [push, pull_request] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Ruby 2.5 uses: ruby/setup-ruby@v1 with: ruby-version: 2.5 - name: Cache gems uses: actions/cache@v1 with: path: vendor/bundle key: ${{ runner.os }}-rubocop-${{ hashFiles('**/Gemfile.lock') }} restore-keys: | ${{ runner.os }}-rubocop- - name: Install gems run: | bundle config path vendor/bundle bundle config set without 'default doc job cable storage ujs test db' bundle install --jobs 4 --retry 3 - name: Run RuboCop run: bundle exec rubocop --parallel
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
vanity-4.0.2 | .github/workflows/linting.yml |
vanity-4.0.1 | .github/workflows/linting.yml |
vanity-4.0.0 | .github/workflows/linting.yml |