Sha256: 396609796ad914769e24a0086a19107ada7f87d7d15dd31ddea90ec4154e5121
Contents?: true
Size: 645 Bytes
Versions: 4
Compression:
Stored size: 645 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.7', '3.0', '3.1', '3.2' ] 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: Verify documentation is up to date run: bundle exec rake generate_cops_documentation - name: Run tests run: bin/rspec
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
rubocop-sorbet-0.7.4 | .github/workflows/ci.yml |
rubocop-sorbet-0.7.3 | .github/workflows/ci.yml |
rubocop-sorbet-0.7.2 | .github/workflows/ci.yml |
rubocop-sorbet-0.7.1 | .github/workflows/ci.yml |