Sha256: c3c0bb36f3759463f3ac799382e9b4b35cbc3a4e4898b49884d529816f65eb82

Contents?: true

Size: 530 Bytes

Versions: 6

Compression:

Stored size: 530 Bytes

Contents

name: CI

on: [push, pull_request]

env:
  SRB_SKIP_GEM_RBIS: true

jobs:
  build:
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        ruby: [ 2.5, 2.6, 2.7, 3.0 ]
    name: Test Ruby ${{ matrix.ruby }}
    steps:
      - uses: actions/checkout@v2
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true
      - name: Lint Ruby files
        run: bin/rubocop
      - name: Run tests
        run: bin/rspec

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rubocop-sorbet-0.6.7 .github/workflows/ci.yml
rubocop-sorbet-0.6.6 .github/workflows/ci.yml
rubocop-sorbet-0.6.5 .github/workflows/ci.yml
rubocop-sorbet-0.6.4 .github/workflows/ci.yml
rubocop-sorbet-0.6.3 .github/workflows/ci.yml
rubocop-sorbet-0.6.2 .github/workflows/ci.yml