Sha256: fa07dee80dd1939c8bc07bc26b2f58ffc2f0b87947b3fa186b3dc3e9b2eba175
Contents?: true
Size: 840 Bytes
Versions: 4
Compression:
Stored size: 840 Bytes
Contents
name: Code Style Checks on: push: branches: - 'main' - 'master' - '*-maintenance' - '*-dev' tags: - '!*' # Do not execute on tags pull_request: branches: - '*' jobs: rubocop: name: Rubocop if: "!contains(github.event.commits[0].message, '[ci skip]') && !contains(github.event.commits[0].message, '[skip ci]')" strategy: fail-fast: false matrix: ruby: - 2.7 runs-on: ubuntu-20.04 steps: - name: Checkout uses: actions/checkout@v2 - name: Setup Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: Install dependencies run: bundle install --jobs 3 --retry 3 - name: Run Rubocop run: bundle exec rubocop -DESP
Version data entries
4 entries across 4 versions & 2 rubygems
Version | Path |
---|---|
qfill-0.1.1 | .github/workflows/style.yml |
qfill-0.1.0 | .github/workflows/style.yml |
oauth2-1.4.6 | .github/workflows/style.yml |
oauth2-1.4.5 | .github/workflows/style.yml |