Sha256: 4a119d48093f8630ec504274a91e7d0f6bd69ddd8226226dd6544d5a8c8aa8b3

Contents?: true

Size: 1.06 KB

Versions: 3

Compression:

Stored size: 1.06 KB

Contents

name: Quality Inspector
on:
  push:
    branches: [ "develop" ]
  pull_request:
    branches: [ "develop" ]

jobs:
  Rspec:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby-version: ['3.0']
    permissions:
      checks: write

    steps:
      - uses: actions/checkout@v3
      - name: Set up Ruby
        uses: ruby/setup-ruby@ee2113536afb7f793eed4ce60e8d3b26db912da4 # v1.127.0
        with:
          ruby-version: ${{ matrix.ruby-version }}
          bundler-cache: true
      - name: Run tests
        run: bundle exec rspec
      - uses: joshmfrankel/simplecov-check-action@main
        with:
          github_token: ${{ secrets.GITHUB_TOKEN }}

  Rubocop:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby-version: ['3.0']

    steps:
      - uses: actions/checkout@v3
      - name: Set up Ruby
        uses: ruby/setup-ruby@ee2113536afb7f793eed4ce60e8d3b26db912da4 # v1.127.0
        with:
          ruby-version: ${{ matrix.ruby-version }}
          bundler-cache: true
      - name: Run rubocop
        run: bundle exec rubocop --format=g

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
nubank_sdk-0.7.9 .github/workflows/quality-inspector.yml
nubank_sdk-0.7.8 .github/workflows/quality-inspector.yml
nubank_sdk-0.7.7 .github/workflows/quality-inspector.yml