Sha256: 500ee878587e216733db3507f9b7bb8b3d2ef3bdb3d282b0025c0b74761c802a
Contents?: true
Size: 765 Bytes
Versions: 2
Compression:
Stored size: 765 Bytes
Contents
name: Linting on: push: branches: - master pull_request: branches: '*' 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
vanity-4.0.4 | .github/workflows/linting.yml |
vanity-4.0.3 | .github/workflows/linting.yml |